change to SDLKey type
[physics.git] / src / Makefile
index b45814a..13c255e 100644 (file)
@@ -20,10 +20,10 @@ SRCS += ticks.cpp
 SRCS += Vector2.cpp
 SRCS += handleSignal.cpp
 
+SRCS += entityCreator.cpp
 SRCS += entityManager.cpp
 SRCS += effectManager.cpp
-SRCS += entityCreator.cpp
-SRCS += collisionHandler.cpp
+SRCS += collisionManager.cpp
 SRCS += CollisionInfo.cpp
 
 SRCS += Entities/Ball.cpp
@@ -46,6 +46,7 @@ SRCS += Effects/GravityWell.cpp
 SRCS += Effects/Screen.cpp
 
 SRCS += config/config.cpp
+SRCS += config/reader.cpp
 
 SRCS += input/inputManager.cpp
 
@@ -114,6 +115,16 @@ distclean: clean
        ${Q1}echo "CLEAN: tags prof gmon.out"
        ${Q2}rm -f tags prof gmon.out
 
+.PHONY: gitclean
+gitclean:
+       ${Q1}echo "git-clean: show, use gitcleanf to force"
+       ${Q2}cd ..; git clean -nxd
+
+.PHONY: gitcleanf
+gitcleanf:
+       ${Q1}echo "git-clean: forced"
+       ${Q2}cd ..; git clean -fxd
+
 tags: ${SRCS}
        ctags $^
 
@@ -128,7 +139,7 @@ tar: ../physics.tar.bz2
 
 .PHONY: run
 run: all
-       ${TARGET}
+       cd ..; ./run_physics
 
 .PHONY: gdb
 gdb: all