X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile;h=6d5b94e43c14e3fc140e7fd2a15397c31f666ee0;hb=6aad402ae2635bb96bd5a67e6054c8e65ea8df68;hp=e6fe96b1cd373560a9b4205ef1453d4622219cbf;hpb=a4bb9ac2979ef7fae7b17a563dfdefe3c138a92f;p=physics.git diff --git a/src/Makefile b/src/Makefile index e6fe96b..6d5b94e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -20,6 +20,7 @@ SRCS += main.cpp SRCS += mathw.cpp SRCS += ticks.cpp SRCS += Vector2.cpp +SRCS += handleSignal.cpp SRCS += Entities/Ball.cpp SRCS += Entities/Entity.cpp @@ -35,6 +36,9 @@ SRCS += GameStates/GameState.cpp SRCS += GameStates/Paused.cpp SRCS += GameStates/Running.cpp +SRCS += Effects/Effect.cpp +SRCS += Effects/Gravity.cpp + SRCS += input/inputManager.cpp SRCS += graphics/graphics.cpp @@ -45,6 +49,7 @@ DEPENDS := ${SRCS:.cpp=.d} HRDS := ${SRCS:.cpp=.h} HRDS := ${HRDS:main.h=} # remove main.h HRDS += debug.h + HRDS += graphics/colors.h TARS := ${SRCS} ${HRDS} Makefile @@ -100,7 +105,7 @@ tags: ${SRCS} ctags $^ tar: - ${Q1}echo "tar: physics.tar" + ${Q1}echo "tar: physics.tar.bz2" ${Q2}rm -f physics.tar # prevents appending ${Q2}for f in ${TARS}; do\ tar -C ../.. -rf physics.tar "physics/src/$$f"; done @@ -114,9 +119,13 @@ git-tar: run: all ${TARGET} +.PHONY: gdb +gdb: all + gdb ${TARGET} + .PHONY: val val: all - valgrind ${TARGET} + valgrind --leak-check=full ${TARGET} .PHONY: prof prof: all