added ball to ball collisions
[physics.git] / src / Makefile
index c25ab1b..1e3e3f5 100644 (file)
 
-LIBALLG = `allegro-config --libs release`
-LIBGL = -lGL -lGLU
-LIBSDL = `sdl-config --libs`
-LIBS = ${LIBSDL} ${LIBGL}
+LIBGL := -lGL -lGLU
+LIBSDL := `sdl-config --libs`
+LIBS := ${LIBSDL} ${LIBGL}
 
-CXX = g++
-CXXFLAGS = -ggdb -Wall -pedantic
+OPTFLAGS := -O2
+DBGFLAGS := -ggdb
+PRFFLAGS := ${DBGFLAGS} -pg
 
-SRCS = Vector2.cpp ticks.cpp main.cpp game.cpp entityManager.cpp gldraw.cpp graphics.cpp
-OBJS = ${SRCS:.cpp=.o}
+#CXX := g++
+CXXFLAGS := -Wall -pedantic -ansi ${DBGFLAGS}
 
-TARGETS = ../run_physics
-DEPEND = depend.mk
+TARGET := ../run_physics
 
-# set suffixes to look for ...
-.SUFFIXES: .cpp .o
+SRCS := # simply to keep every line below the same
+SRCS += game.cpp
+SRCS += main.cpp
+SRCS += mathw.cpp
+SRCS += ticks.cpp
+SRCS += Vector2.cpp
+SRCS += handleSignal.cpp
 
-# set default action for a *.cc to create a *.o
-.cpp.o:
-       g++ -c $< ${CXXFLAGS}
+SRCS += entityManager.cpp
+SRCS += effectManager.cpp
+SRCS += entityCreator.cpp
+SRCS += collisionHandler.cpp
+SRCS += CollisionInfo.cpp
 
-all: ${TARGETS}
+SRCS += Entities/Ball.cpp
+SRCS += Entities/Entity.cpp
+SRCS += Entities/Line.cpp
+SRCS += Entities/Particle.cpp
+SRCS += Entities/PhysicsEntity.cpp
+SRCS += Entities/Point.cpp
+SRCS += Entities/Polygon.cpp
+SRCS += Entities/WindParticle.cpp
 
-depend:
-       ${CXX} -MM ${SRCS} > ${DEPEND}
+SRCS += GameStates/CreatingPolygon.cpp
+SRCS += GameStates/GameState.cpp
+SRCS += GameStates/Paused.cpp
+SRCS += GameStates/Running.cpp
 
-tags:
-       ctags ${SRCS}
+SRCS += Effects/Effect.cpp
+SRCS += Effects/Gravity.cpp
+SRCS += Effects/Screen.cpp
 
-clean:
-       rm -f ${OBJS} ${TARGETS} *~
+SRCS += input/inputManager.cpp
 
-distclean: clean
-       rm -f tags depend.mk
-       touch depend.mk
+SRCS += graphics/graphics.cpp
+
+OBJS := ${SRCS:.cpp=.o}
+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
 
-# i need to find a nice way of ijnoring .svn folders for the below
-tar: clean
-       cd ..; tar -cjf bluestar.tar.bz2 images/ source/
 
+VERBOSE := 0
 
-run: ../run_physics
-       cd ..; ./run_physics
+ifeq (${VERBOSE},0)
+    # quiet the echo command
+    Q1 := @
+    # quiet the command that is `replaced' by an echo
+    Q2 := @
+else
+    # EAT the echo command as if it was not there
+    Q1 := @true # NOTE: the space between @true and the # is VERY important!!
+    # do not quiet the command output
+    Q2 :=
+endif
 
-../run_physics: ${OBJS}
-       ${CXX} ${CXXFLAGS} -o ../run_physics ${OBJS} ${LIBS}
+.PHONY: all
+all: ${TARGET}
 
-Entities.d:
-       cd Entities; make
+${TARGET}: ${OBJS}
+       ${Q1}echo "${CXX}: $@"
+       ${Q2}${CXX} ${CXXFLAGS} -o ${TARGET} $^ ${LIBS}
 
-include ${DEPEND}
+# rule to make a depend file from a .cpp
+%.d: %.cpp
+       ${Q1}echo "DEP: $@"
+       ${Q2}${CXX} -M ${CXXFLAGS} $< | sed 's,: , $@: ,' > $@
 
+# rule to make an object file from a .cpp
+%.o: %.cpp
+       ${Q1}echo "${CXX}: $@"
+       ${Q2}${CXX} ${CXXFLAGS} -c -o $@ $<
+
+
+.PHONY: clean
+clean:
+       ${Q1}echo "CLEAN: OBJS"
+       ${Q2}rm -f ${OBJS}
+       ${Q1}echo "CLEAN: TARGET"
+       ${Q2}rm -f ${TARGET}
+
+.PHONY: distclean
+distclean: clean
+       ${Q1}echo "CLEAN: DEPENDS"
+       ${Q2}rm -f ${DEPENDS}
+       ${Q1}echo "CLEAN: tags prof gmon.out"
+       ${Q2}rm -f tags prof gmon.out
+
+tags: ${SRCS}
+       ctags $^
+
+.PHONY: tar
+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
+       ${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
+
+.PHONY: run
+run: all
+       ${TARGET}
+
+.PHONY: gdb
+gdb: all
+       gdb ${TARGET}
+
+.PHONY: val
+val: all
+       valgrind --leak-check=full ${TARGET}
+
+.PHONY: prof
+prof: all
+       ${TARGET}
+       gprof -b ${TARGET} > prof
+       kprof -f prof
+
+-include ${DEPENDS}