dart-sdk/docs/language/Makefile
Erik Ernst 02bb4379a2 Added specification of new style function types, generalized typedefs
Change-Id: I02b86e91d0457f4f50293c8d2f609c1d9ad91246
Reviewed-on: https://dart-review.googlesource.com/c/81414
Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Leaf Petersen <leafp@google.com>
2019-01-11 13:54:07 +00:00

46 lines
897 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
clean: cleanish
rm -f *.dvi *.pdf $(HASH) $(LIST)