blob: 38f548ca9b3f3a4cedb8d13691ac578f9cb3cc4c (
plain)
1
2
3
4
5
6
7
8
9
10
|
FILENAME=diplomarbeit
all:
rubber -d $(FILENAME).tex
clean:
ls $(FILENAME).* | \
grep -v .tcp | \
grep -v .tex | \
xargs rm
spell:
find ./chapters -name \*.tex -exec sh -c 'aspell -l de_DE -t -c {}' \;
|