OLD | NEW |
1 NAME=dartLangSpec | 1 NAME=dartLangSpec |
2 SPEC=$(NAME).tex | 2 SPEC=$(NAME).tex |
3 HASH=$(NAME)-hash.tex | 3 HASH=$(NAME)-hash.tex |
4 LIST=$(NAME)-list.txt | 4 LIST=$(NAME)-list.txt |
5 HASHER=../../tools/addlatexhash.dart | 5 HASHER=../../tools/addlatexhash.dart |
6 | 6 |
7 pdf: | 7 pdf: |
8 pdflatex $(SPEC) | 8 pdflatex $(SPEC) |
9 pdflatex $(SPEC) | 9 pdflatex $(SPEC) |
10 pdflatex $(SPEC) | 10 pdflatex $(SPEC) |
(...skipping 21 matching lines...) Expand all Loading... |
32 @echo " pdf, dvi: generate the pdf/dvi file containing the spec" | 32 @echo " pdf, dvi: generate the pdf/dvi file containing the spec" |
33 @echo " pdfhash, dvihash: ditto, with location markers filled in" | 33 @echo " pdfhash, dvihash: ditto, with location markers filled in" |
34 @echo " cleanish: remove [pdf]latex generated intermediate files" | 34 @echo " cleanish: remove [pdf]latex generated intermediate files" |
35 @echo " clean: remove all generated files" | 35 @echo " clean: remove all generated files" |
36 | 36 |
37 cleanish: | 37 cleanish: |
38 rm -f *.aux *.log *.toc *.out | 38 rm -f *.aux *.log *.toc *.out |
39 | 39 |
40 clean: cleanish | 40 clean: cleanish |
41 rm -f *.dvi *.pdf $(HASH) $(LIST) | 41 rm -f *.dvi *.pdf $(HASH) $(LIST) |
42 | 42 |
OLD | NEW |