diff options
| author | Manuel Traut <manut@linutronix.de> | 2010-10-17 19:10:04 +0200 |
|---|---|---|
| committer | Manuel Traut <manut@linutronix.de> | 2010-10-17 19:10:04 +0200 |
| commit | 00e936a737b749d176371d0861b1d403b37d2cba (patch) | |
| tree | ba3efe28c95b95be6ac90b9f4db6ed2204b3216e /application-devel | |
| parent | dfa18101f1836fa73518971020cede43de539f7d (diff) | |
add missing makefiles
Signed-off-by: Manuel Traut <manut@linutronix.de>
Diffstat (limited to 'application-devel')
| -rw-r--r-- | application-devel/compile-tools/Makefile | 9 | ||||
| -rw-r--r-- | application-devel/devel-best-practices/Makefile | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/application-devel/compile-tools/Makefile b/application-devel/compile-tools/Makefile new file mode 100644 index 0000000..4663d52 --- /dev/null +++ b/application-devel/compile-tools/Makefile @@ -0,0 +1,9 @@ +all: + for pdf in `ls -1 *.tex` ; do \ + pdflatex $$pdf; \ + pdflatex $$pdf; \ + done + +clean: + rm -f *.aux *.log *.pdf *.log *.snm *.toc *.vrb *.nav *.out + diff --git a/application-devel/devel-best-practices/Makefile b/application-devel/devel-best-practices/Makefile new file mode 100644 index 0000000..4663d52 --- /dev/null +++ b/application-devel/devel-best-practices/Makefile @@ -0,0 +1,9 @@ +all: + for pdf in `ls -1 *.tex` ; do \ + pdflatex $$pdf; \ + pdflatex $$pdf; \ + done + +clean: + rm -f *.aux *.log *.pdf *.log *.snm *.toc *.vrb *.nav *.out + |
