summaryrefslogtreecommitdiff
path: root/LaTeX-Sources/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'LaTeX-Sources/Makefile')
-rw-r--r--LaTeX-Sources/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/LaTeX-Sources/Makefile b/LaTeX-Sources/Makefile
new file mode 100644
index 0000000..f885eeb
--- /dev/null
+++ b/LaTeX-Sources/Makefile
@@ -0,0 +1,12 @@
+FILENAME=diplomarbeit
+all:
+ svn info | grep 'Changed Rev' | awk '{ print $$4 }' > revision.tex
+ rubber -d $(FILENAME).tex
+clean:
+ ls $(FILENAME).* | \
+ grep -v .tcp | \
+ grep -v .tex | \
+ xargs rm
+ rm -f images/*.pdf
+spell:
+ find ./chapters -name \*.tex -exec sh -c 'aspell -l de_DE -t -c {}' \;