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

Unified Diff: nacltoons/Makefile

Issue 12209048: Update nacltoon Makefile (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src/
Patch Set: Created 7 years, 10 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
« 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: nacltoons/Makefile
===================================================================
--- nacltoons/Makefile (revision 1499)
+++ nacltoons/Makefile (working copy)
@@ -20,7 +20,7 @@
NACLPORTS_STAMP=out/naclports.stamp
COCOS2DX_STAMP=out/cocos2dx.stamp
-all: $(NACLPORTS_STAMP) $(COCOS2DX_STAMP)
+all: $(NACLPORTS_STAMP) cocos2dx
@echo '@@@BUILD_STEP build game@@@'
$(MAKE) -f game.mk NACL_ARCH=$(NACL_ARCH) DEBUG=$(DEBUG)
@@ -28,15 +28,15 @@
build/build-naclports.sh
touch $(NACLPORTS_STAMP)
-cocos2dx $(COCOS2DX_STAMP): $(NACLPORTS_STAMP) build/build-cocos2dx.sh
+cocos2dx : $(NACLPORTS_STAMP) build/build-cocos2dx.sh
build/build-cocos2dx.sh
- touch $(COCOS2DX_STAMP)
clean:
$(MAKE) -f game.mk clean
$(RM) $(NACLPORTS_STAMP) $(COCOS2DX_STAMP)
publish: all
+ rm -fr out/publish
mkdir -p out/publish
cp out/newlib/$(CONFIG)/*.nexe out/publish
cp out/newlib/$(CONFIG)/*.nmf out/publish
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698