small Makefile change
[physics.git] / src / Makefile
index 7964286..7e6abee 100644 (file)
@@ -6,6 +6,7 @@ LIBS := ${LIBSDL} ${LIBGL}
 OPTFLAGS := -O2
 DBGFLAGS := -ggdb
 PRFFLAGS := ${DBGFLAGS} -pg
+VALFLAGS := --leak-check=full
 
 #CXX := g++
 CXXFLAGS := -Wall -pedantic -ansi ${DBGFLAGS}
@@ -13,9 +14,6 @@ CXXFLAGS := -Wall -pedantic -ansi ${DBGFLAGS}
 TARGET := ../run_physics
 
 SRCS := # simply to keep every line below the same
-SRCS += entityManager.cpp
-SRCS += effectManager.cpp
-SRCS += entityCreator.cpp
 SRCS += game.cpp
 SRCS += main.cpp
 SRCS += mathw.cpp
@@ -23,6 +21,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
@@ -45,8 +49,13 @@ SRCS += input/inputManager.cpp
 
 SRCS += graphics/graphics.cpp
 
+OBJSDIR := ../objs/
 OBJS := ${SRCS:.cpp=.o}
-DEPENDS := ${SRCS:.cpp=.d}
+OBJS := $(addprefix ${OBJSDIR},${OBJS})
+
+DEPSDIR := ../deps/
+DEPS := ${SRCS:.cpp=.d}
+DEPS := $(addprefix ${DEPSDIR},${DEPS})
 
 HRDS := ${SRCS:.cpp=.h}
 HRDS := ${HRDS:main.h=} # remove main.h
@@ -76,15 +85,15 @@ all: ${TARGET}
 
 ${TARGET}: ${OBJS}
        ${Q1}echo "${CXX}: $@"
-       ${Q2}${CXX} ${CXXFLAGS} -o ${TARGET} $^ ${LIBS}
+       ${Q2}${CXX} ${CXXFLAGS} -o $@ $^ ${LIBS}
 
 # rule to make a depend file from a .cpp
-%.d: %.cpp
+${DEPSDIR}%.d: %.cpp
        ${Q1}echo "DEP: $@"
        ${Q2}${CXX} -M ${CXXFLAGS} $< | sed 's,: , $@: ,' > $@
 
 # rule to make an object file from a .cpp
-%.o: %.cpp
+${OBJSDIR}%.o: %.cpp
        ${Q1}echo "${CXX}: $@"
        ${Q2}${CXX} ${CXXFLAGS} -c -o $@ $<
 
@@ -98,8 +107,8 @@ clean:
 
 .PHONY: distclean
 distclean: clean
-       ${Q1}echo "CLEAN: DEPENDS"
-       ${Q2}rm -f ${DEPENDS}
+       ${Q1}echo "CLEAN: DEPS"
+       ${Q2}rm -f ${DEPS}
        ${Q1}echo "CLEAN: tags prof gmon.out"
        ${Q2}rm -f tags prof gmon.out
 
@@ -129,7 +138,7 @@ gdb: all
 
 .PHONY: val
 val: all
-       valgrind --leak-check=full ${TARGET}
+       valgrind ${VALFLAGS} ${TARGET}
 
 .PHONY: prof
 prof: all
@@ -137,4 +146,4 @@ prof: all
        gprof -b ${TARGET} > prof
        kprof -f prof
 
--include ${DEPENDS}
+-include ${DEPS}