This commit is contained in:
Ming 2010-09-09 09:26:12 +00:00
parent 9cab8be0ff
commit cf99693596
1 changed files with 5 additions and 1 deletions

View File

@ -51,6 +51,7 @@ OBJECTS = \
$(OBJECTS_DIR)/ProgressActionsTest.o \
$(OBJECTS_DIR)/RotateWorldTest.o \
$(OBJECTS_DIR)/SceneTest.o \
$(OBJECTS_DIR)/SpriteTest.o \
$(OBJECTS_DIR)/TileMapTest.o \
$(OBJECTS_DIR)/Ball.o \
$(OBJECTS_DIR)/Paddle.o \
@ -143,6 +144,9 @@ $(OBJECTS_DIR)/RotateWorldTest.o : ./tests/RotateWorldTest/RotateWorldTest.cpp
$(OBJECTS_DIR)/SceneTest.o : ./tests/SceneTest/SceneTest.cpp
$(CXX) -c $(CXX_FLAGS) $(INCLUDE_PATH) $(LAST_INCLUDE_PATH) -o $(OBJECTS_DIR)/SceneTest.o ./tests/SceneTest/SceneTest.cpp
$(OBJECTS_DIR)/SpriteTest.o : ./tests/SpriteTest/SpriteTest.cpp
$(CXX) -c $(CXX_FLAGS) $(INCLUDE_PATH) $(LAST_INCLUDE_PATH) -o $(OBJECTS_DIR)/SpriteTest.o ./tests/SpriteTest/SpriteTest.cpp
$(OBJECTS_DIR)/TileMapTest.o : ./tests/TileMapTest/TileMapTest.cpp
$(CXX) -c $(CXX_FLAGS) $(INCLUDE_PATH) $(LAST_INCLUDE_PATH) -o $(OBJECTS_DIR)/TileMapTest.o ./tests/TileMapTest/TileMapTest.cpp