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

Unified Diff: native_client_sdk/src/examples/Makefile

Issue 11882012: Convert all project to use common.mk (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/examples/Makefile
diff --git a/native_client_sdk/src/examples/Makefile b/native_client_sdk/src/examples/Makefile
index 2bbcaf6879701fd0fe3c367543afd5d2752b5146..e89a7f998f7769ac75fdde1cdf0b8802385506a3 100644
--- a/native_client_sdk/src/examples/Makefile
+++ b/native_client_sdk/src/examples/Makefile
@@ -24,6 +24,11 @@ TARGET_LIST+=$(1)_TARGET
$(1)_TARGET:
+$(MAKE) -C $(1)
+VERSIONS_LIST+=$(1)_VERSIONS
+.PHONY: $(1)_VERSIONS
+$(1)_VERSIONS:
+ +$(MAKE) -C $(1) all_versions
+
CLEAN_LIST+=$(1)_CLEAN
.PHONY: $(1)_CLEAN
$(1)_CLEAN:
@@ -39,6 +44,9 @@ __DEPENDENCIES__
all: $(TARGET_LIST)
echo "Done building targets."
+all_versions: $(VERSIONS_LIST)
+ echo "Done building all versions."
+
clean: $(CLEAN_LIST)
echo "Done cleaning targets."
« no previous file with comments | « native_client_sdk/src/build_tools/generate_make.py ('k') | native_client_sdk/src/examples/debugging/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698