Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(223)

Side by Side Diff: docs/language/Makefile

Issue 1181733003: Specify behavior of e?.v++ and e?.v-- (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix Makefile Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | docs/language/dartLangSpec.tex » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | docs/language/dartLangSpec.tex » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698