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 /flash-memory/mtd | |
| parent | bb4eefa52e5a886f9ad2a09583be3014f8e5993d (diff) | |
simplify makefiles
Signed-off-by: Manuel Traut <manut@linutronix.de>
Diffstat (limited to 'flash-memory/mtd')
| -rw-r--r-- | flash-memory/mtd/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/flash-memory/mtd/Makefile b/flash-memory/mtd/Makefile index 92197fe..4663d52 100644 --- a/flash-memory/mtd/Makefile +++ b/flash-memory/mtd/Makefile @@ -1,7 +1,8 @@ all: - pdflatex pres_mtd_de.tex - pdflatex handout_mtd_de.tex - pdflatex handout_mtd_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 |
