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 /realtime/rt-app-basics | |
| parent | bb4eefa52e5a886f9ad2a09583be3014f8e5993d (diff) | |
simplify makefiles
Signed-off-by: Manuel Traut <manut@linutronix.de>
Diffstat (limited to 'realtime/rt-app-basics')
| -rw-r--r-- | realtime/rt-app-basics/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/realtime/rt-app-basics/Makefile b/realtime/rt-app-basics/Makefile index c525117..4663d52 100644 --- a/realtime/rt-app-basics/Makefile +++ b/realtime/rt-app-basics/Makefile @@ -1,9 +1,8 @@ all: - pdflatex pres_rt-app-basics_de.tex - pdflatex pres_rt-app-basics_en.tex - pdflatex hints_rt-app-basics_de.tex - pdflatex handout_rt-app-basics_de.tex - pdflatex handout_rt-app-basics_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 |
