From 8befecfca01c0675ed5c645bc280f2dba47f8cba Mon Sep 17 00:00:00 2001 From: Manuel Traut Date: Wed, 13 Oct 2010 16:56:37 +0200 Subject: simplify makefiles Signed-off-by: Manuel Traut --- linux-basics/sh-programming/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'linux-basics/sh-programming/Makefile') diff --git a/linux-basics/sh-programming/Makefile b/linux-basics/sh-programming/Makefile index 325aad0..4663d52 100644 --- a/linux-basics/sh-programming/Makefile +++ b/linux-basics/sh-programming/Makefile @@ -1,8 +1,8 @@ all: - pdflatex pres_sh-programming_de.tex - pdflatex hints_sh-programming_de.tex - pdflatex handout_sh-programming_de.tex - pdflatex handout_sh-programming_de.tex + for pdf in `ls -1 *.tex` ; do \ + pdflatex $$pdf; \ + pdflatex $$pdf; \ + done clean: rm -f *.aux *.log *.pdf *.log *.snm *.toc *.vrb *.nav *.out -- cgit v1.2.3