summaryrefslogtreecommitdiff
path: root/LaTeX-Sources/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-08-15 04:09:42 +0000
committerPaul Buetow <paul@buetow.org>2008-08-15 04:09:42 +0000
commitafed274c10a93957f82a009824cafe8d83aa68a8 (patch)
tree4a4d3980a3d9eb32bf7be443a83afe4c21dcdf55 /LaTeX-Sources/Makefile
new branches
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 {}' \;