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

Side by Side Diff: nacltoons/game.mk

Issue 12226130: [nacltoons] Add initial frontend and physics game scenes. (Closed) Base URL: https://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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # 5 #
6 # GNU Make based build file. For details on GNU Make see: 6 # GNU Make based build file. For details on GNU Make see:
7 # http://www.gnu.org/software/make/manual/make.html 7 # http://www.gnu.org/software/make/manual/make.html
8 # 8 #
9 # 9 #
10 10
(...skipping 14 matching lines...) Expand all
25 # The base name of the final NEXE, also the name of the NMF file containing 25 # The base name of the final NEXE, also the name of the NMF file containing
26 # the mapping between architecture and actual NEXE. 26 # the mapping between architecture and actual NEXE.
27 # 27 #
28 TARGET:=nacltoons 28 TARGET:=nacltoons
29 29
30 # 30 #
31 # List of sources to compile 31 # List of sources to compile
32 # 32 #
33 SOURCES := src/main.cc \ 33 SOURCES := src/main.cc \
34 src/AppDelegate.cc \ 34 src/AppDelegate.cc \
35 src/FrontEnd.cc \
35 src/GameplayScene.cc \ 36 src/GameplayScene.cc \
37 src/PhysicsLayer.cc \
36 ../third_party/cocos2d-x/extensions/physics_nodes/CCPhysicsDebugNode. cpp \ 38 ../third_party/cocos2d-x/extensions/physics_nodes/CCPhysicsDebugNode. cpp \
37 ../third_party/cocos2d-x/extensions/physics_nodes/CCPhysicsSprite.cpp 39 ../third_party/cocos2d-x/extensions/physics_nodes/CCPhysicsSprite.cpp
38 40
39 PAGE:=out/publish/index.html 41 PAGE:=out/publish/index.html
40 42
41 # 43 #
42 # Get pepper directory for toolchain and includes. 44 # Get pepper directory for toolchain and includes.
43 # 45 #
44 # If NACL_SDK_ROOT is not set, then assume it can be found relative to 46 # If NACL_SDK_ROOT is not set, then assume it can be found relative to
45 # to this Makefile. 47 # to this Makefile.
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 # 104 #
103 # Use the link macro for this target on the list of sources. 105 # Use the link macro for this target on the list of sources.
104 # 106 #
105 $(eval $(call LINK_RULE,$(TARGET),$(SOURCES),$(LIBS),$(DEPS))) 107 $(eval $(call LINK_RULE,$(TARGET),$(SOURCES),$(LIBS),$(DEPS)))
106 108
107 # 109 #
108 # Specify the NMF to be created with no additional arugments. 110 # Specify the NMF to be created with no additional arugments.
109 # 111 #
110 $(eval $(call NMF_RULE,$(TARGET),)) 112 $(eval $(call NMF_RULE,$(TARGET),))
111 113
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698