Revision: 9178
Author: [email protected]
Date: Wed Sep 7 06:48:29 2011
Log: Add "dependencies" target to top-level Makefile
Review URL: http://codereview.chromium.org/7739021
http://code.google.com/p/v8/source/detail?r=9178
Modified:
/branches/bleeding_edge/Makefile
=======================================
--- /branches/bleeding_edge/Makefile Wed Aug 31 06:01:28 2011
+++ /branches/bleeding_edge/Makefile Wed Sep 7 06:48:29 2011
@@ -70,6 +70,7 @@
endif
# ----------------- available targets: --------------------
+# - "dependencies": pulls in external dependencies (currently: GYP)
# - any arch listed in ARCHES (see below)
# - any mode listed in MODES
# - every combination <arch>.<mode>, e.g. "ia32.release"
@@ -98,7 +99,7 @@
# File where previously used GYPFLAGS are stored.
ENVFILE = $(OUTDIR)/environment
-.PHONY: all check clean $(ENVFILE).new \
+.PHONY: all check clean dependencies $(ENVFILE).new \
$(ARCHES) $(MODES) $(BUILDS) $(CHECKS)
$(addsuffix .clean,$(ARCHES)) \
$(addsuffix .check,$(MODES)) $(addsuffix .check,$(ARCHES))
@@ -170,3 +171,8 @@
# Stores current GYPFLAGS in a file.
$(ENVFILE).new:
@mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new;
+
+# Dependencies.
+dependencies:
+ svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
+ --revision 1026
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev