diff options
Diffstat (limited to 'linux-basics/sh-programming/Makefile')
| -rw-r--r-- | linux-basics/sh-programming/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
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 |
