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

Side by Side Diff: nacltoons/Makefile

Issue 12094088: Don't ignore failures in build-cocos2dx.sh. (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | nacltoons/build/build-cocos2dx.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 NACLPORTS_STAMP=out/naclports.stamp 1 NACLPORTS_STAMP=out/naclports.stamp
2 COCOS2DX_STAMP=out/cocos2dx.stamp 2 COCOS2DX_STAMP=out/cocos2dx.stamp
3 3
4 all: $(NACLPORTS_STAMP) $(COCOS2DX_STAMP) 4 all: $(NACLPORTS_STAMP) $(COCOS2DX_STAMP)
5 5
6 .PHONY: naclports cocos2dx game 6 .PHONY: naclports cocos2dx game
7 naclports $(NACLPORTS_STAMP): build/build-naclports.sh 7 naclports $(NACLPORTS_STAMP): build/build-naclports.sh
8 build/build-naclports.sh 8 build/build-naclports.sh
9 touch $(NACLPORTS_STAMP) 9 touch $(NACLPORTS_STAMP)
10 10
11 cocos2dx $(COCOS2DX_STAMP): build/build-cocos2dx.sh 11 cocos2dx $(COCOS2DX_STAMP): build/build-cocos2dx.sh
12 build/build-cocos2dx.sh 12 build/build-cocos2dx.sh
13 touch $(COCOS2DX_STAMP) 13 touch $(COCOS2DX_STAMP)
14 14
15 include game.mk 15 include game.mk
16
17 clean::
18 rm -f $(NACLPORTS_STAMP) $(COCOS2DX_STAMP)
19
OLDNEW
« no previous file with comments | « no previous file | nacltoons/build/build-cocos2dx.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698