diff options
| author | Manuel Traut <manut@linutronix.de> | 2010-10-13 16:56:37 +0200 |
|---|---|---|
| committer | Manuel Traut <manut@linutronix.de> | 2010-10-13 16:56:37 +0200 |
| commit | 8befecfca01c0675ed5c645bc280f2dba47f8cba (patch) | |
| tree | e7e10000a71c7f84a7119ea5fa3582d856bd92f2 /linux-basics/important-tools/Makefile | |
| parent | bb4eefa52e5a886f9ad2a09583be3014f8e5993d (diff) | |
simplify makefiles
Signed-off-by: Manuel Traut <manut@linutronix.de>
Diffstat (limited to 'linux-basics/important-tools/Makefile')
| -rw-r--r-- | linux-basics/important-tools/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/linux-basics/important-tools/Makefile b/linux-basics/important-tools/Makefile index ffcea55..4663d52 100644 --- a/linux-basics/important-tools/Makefile +++ b/linux-basics/important-tools/Makefile @@ -1,5 +1,8 @@ all: - pdflatex pres_important_tools_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 |
