OLD | NEW |
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 18 matching lines...) Expand all Loading... |
29 TARGET:=nacltoons | 29 TARGET:=nacltoons |
30 | 30 |
31 COCOS_ROOT = ../third_party/cocos2d-x | 31 COCOS_ROOT = ../third_party/cocos2d-x |
32 | 32 |
33 # | 33 # |
34 # List of sources to compile | 34 # List of sources to compile |
35 # | 35 # |
36 SOURCES := src/main.cc \ | 36 SOURCES := src/main.cc \ |
37 src/app_delegate.cc \ | 37 src/app_delegate.cc \ |
38 src/frontend.cc \ | 38 src/frontend.cc \ |
39 » src/gameplay_scene.cc \ | 39 » src/game_manager.cc \ |
40 » src/physics_layer.cc \ | 40 » src/level_layer.cc \ |
| 41 » src/ui_layer.cc \ |
41 bindings/LuaBox2D.cpp \ | 42 bindings/LuaBox2D.cpp \ |
42 » bindings/lua_physics_layer.cpp \ | 43 » bindings/lua_level_layer.cpp \ |
43 bindings/LuaCocos2dExtensions.cpp \ | 44 bindings/LuaCocos2dExtensions.cpp \ |
44 $(COCOS_ROOT)/samples/Cpp/TestCpp/Classes/Box2DTestBed/GLES-Render.cp
p \ | 45 $(COCOS_ROOT)/samples/Cpp/TestCpp/Classes/Box2DTestBed/GLES-Render.cp
p \ |
45 $(COCOS_ROOT)/extensions/physics_nodes/CCPhysicsDebugNode.cpp \ | 46 $(COCOS_ROOT)/extensions/physics_nodes/CCPhysicsDebugNode.cpp \ |
46 $(COCOS_ROOT)/extensions/physics_nodes/CCPhysicsSprite.cpp \ | 47 $(COCOS_ROOT)/extensions/physics_nodes/CCPhysicsSprite.cpp \ |
47 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/CCLuaEngine.cpp \ | 48 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/CCLuaEngine.cpp \ |
48 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/CCLuaStack.cpp \ | 49 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/CCLuaStack.cpp \ |
49 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/Cocos2dxLuaLoader.cpp \ | 50 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/Cocos2dxLuaLoader.cpp \ |
50 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/LuaCocos2d.cpp \ | 51 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/LuaCocos2d.cpp \ |
51 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/tolua_fix.c | 52 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/tolua_fix.c |
52 | 53 |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 | 156 |
156 $(OUTDIR)/$(TARGET)_arm.nexe: \ | 157 $(OUTDIR)/$(TARGET)_arm.nexe: \ |
157 $(COCOS2DX_PATH)/lib/newlib_arm/$(CONFIG)/libcocos2d.a \ | 158 $(COCOS2DX_PATH)/lib/newlib_arm/$(CONFIG)/libcocos2d.a \ |
158 $(COCOS2DX_PATH)/lib/newlib_arm/$(CONFIG)/liblua.a \ | 159 $(COCOS2DX_PATH)/lib/newlib_arm/$(CONFIG)/liblua.a \ |
159 $(COCOS2DX_PATH)/lib/newlib_arm/$(CONFIG)/libbox2d.a | 160 $(COCOS2DX_PATH)/lib/newlib_arm/$(CONFIG)/libbox2d.a |
160 | 161 |
161 $(OUTDIR)/$(TARGET)_x86_32.nexe: \ | 162 $(OUTDIR)/$(TARGET)_x86_32.nexe: \ |
162 $(COCOS2DX_PATH)/lib/newlib_x86_32/$(CONFIG)/libcocos2d.a \ | 163 $(COCOS2DX_PATH)/lib/newlib_x86_32/$(CONFIG)/libcocos2d.a \ |
163 $(COCOS2DX_PATH)/lib/newlib_x86_32/$(CONFIG)/liblua.a \ | 164 $(COCOS2DX_PATH)/lib/newlib_x86_32/$(CONFIG)/liblua.a \ |
164 $(COCOS2DX_PATH)/lib/newlib_x86_32/$(CONFIG)/libbox2d.a | 165 $(COCOS2DX_PATH)/lib/newlib_x86_32/$(CONFIG)/libbox2d.a |
OLD | NEW |