Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(615)

Unified Diff: Makefile

Issue 7333050: Makefile target dependency fixes. Base URL: https://code.google.com/p/traceur-compiler/@master
Patch Set: Created 12 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile
diff --git a/Makefile b/Makefile
index 79f95b37d847121780db9e9312a3bd71b3e034b5..97230840fdde0491f554e6919243995930c86711 100644
--- a/Makefile
+++ b/Makefile
@@ -28,13 +28,13 @@ initbench:
git reset --hard 1ddd7e0524d09475a14eee66e8e1e3557c5b5999
git apply test/bench/esprima-compare.patch
-bin/traceur.min.js: bin/traceur.js
- node build/minifier.js $? $@
+bin/traceur.min.js: build/minifier.js bin/traceur.js
+ node $^ $@
-bin/traceur.js: build/dep.mk src/syntax/trees/ParseTreeType.js src/syntax/trees/ParseTrees.js
+bin/traceur.js: build/dep.mk
build/build
-build/dep.mk:
+build/dep.mk: | src/syntax/trees/ParseTreeType.js src/syntax/trees/ParseTrees.js
build/build --dep > $@
src/syntax/trees/ParseTrees.js: src/syntax/trees/trees.json build/build-parse-trees.js
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b