added ball to ball collisions
[physics.git] / src / Makefile
index 6d5b94e..1e3e3f5 100644 (file)
@@ -13,8 +13,6 @@ CXXFLAGS := -Wall -pedantic -ansi ${DBGFLAGS}
 TARGET := ../run_physics
 
 SRCS := # simply to keep every line below the same
-SRCS += entityManager.cpp
-SRCS += entityCreator.cpp
 SRCS += game.cpp
 SRCS += main.cpp
 SRCS += mathw.cpp
@@ -22,6 +20,12 @@ SRCS += ticks.cpp
 SRCS += Vector2.cpp
 SRCS += handleSignal.cpp
 
+SRCS += entityManager.cpp
+SRCS += effectManager.cpp
+SRCS += entityCreator.cpp
+SRCS += collisionHandler.cpp
+SRCS += CollisionInfo.cpp
+
 SRCS += Entities/Ball.cpp
 SRCS += Entities/Entity.cpp
 SRCS += Entities/Line.cpp
@@ -38,6 +42,7 @@ SRCS += GameStates/Running.cpp
 
 SRCS += Effects/Effect.cpp
 SRCS += Effects/Gravity.cpp
+SRCS += Effects/Screen.cpp
 
 SRCS += input/inputManager.cpp
 
@@ -104,6 +109,7 @@ distclean: clean
 tags: ${SRCS}
        ctags $^
 
+.PHONY: tar
 tar:
        ${Q1}echo "tar: physics.tar.bz2"
        ${Q2}rm -f physics.tar # prevents appending
@@ -111,6 +117,7 @@ tar:
                tar -C ../.. -rf physics.tar "physics/src/$$f"; done
        ${Q2}bzip2 physics.tar
 
+.PHONY: git-tar
 git-tar:
        ${Q1}echo "git-archive: ../physics.tar.bz2"
        ${Q2}cd ..; git-archive --prefix=physics/ HEAD | bzip2 > physics.tar.bz2