Files
sdk/docs/language/Makefile
T
Erik Ernst 33c321892c Cleaned up some terminology, whitespace, and added index.
Changed "compile-time warning" to "static warning"; eliminated spurious
space at the beginning of each normative paragraph; added index and
changed all `{\em ..}` containing defining occurrences of words and
phrases such that they are added to the index and marked with a
diamond in the margin (to make it easy to spot definitions).

Change-Id: I688561a24d2b9955f383d6c8db2c913353d41b4b
Reviewed-on: https://dart-review.googlesource.com/c/82501
Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
2018-11-02 12:11:41 +00:00

46 lines
915 B
Makefile

NAME=dartLangSpec
SPEC=$(NAME).tex
HASH=$(NAME)-hash.tex
LIST=$(NAME)-list.txt
HASHER=../../tools/addlatexhash.dart
pdf:
pdflatex $(SPEC)
makeindex $(NAME).idx
pdflatex $(SPEC)
pdflatex $(SPEC)
pdfhash: hash_and_list
pdflatex $(HASH)
makeindex $(NAME)-hash.idx
pdflatex $(HASH)
pdflatex $(HASH)
dvi:
latex $(SPEC)
makeindex $(NAME).idx
latex $(SPEC)
latex $(SPEC)
dvihash: hash_and_list
latex $(HASH)
makeindex $(NAME)-hash.idx
latex $(HASH)
latex $(HASH)
hash_and_list:
dart $(HASHER) $(SPEC) $(HASH) $(LIST)
help:
@echo "Goals:"
@echo " pdf, dvi: generate the pdf/dvi file containing the spec"
@echo " pdfhash, dvihash: ditto, with location markers filled in"
@echo " cleanish: remove [pdf]latex generated intermediate files"
@echo " clean: remove all generated files"
cleanish:
rm -f *.aux *.log *.toc *.out *.idx *.ilg
clean: cleanish
rm -f *.dvi *.pdf *.ind $(HASH) $(LIST)