X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile;h=b7fcb11bb608141f6df981ffb1720cf01d30d172;hb=ec70635e518dbd916303ec7d5ffa5e9b99bde565;hp=4a517065292b291d3cb63827fa10c2c04caf61b3;hpb=f7b3b2eb35e8047d247dfd7cf7b110a2b6e907af;p=physics.git diff --git a/src/Makefile b/src/Makefile index 4a51706..b7fcb11 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,18 +1,26 @@ -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 := entityManager.cpp +#CXX := g++ +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 += graphics.cpp SRCS += main.cpp SRCS += mathw.cpp SRCS += ticks.cpp SRCS += Vector2.cpp +SRCS += handleSignal.cpp SRCS += Entities/Ball.cpp SRCS += Entities/Entity.cpp @@ -28,44 +36,97 @@ SRCS += GameStates/GameState.cpp SRCS += GameStates/Paused.cpp SRCS += GameStates/Running.cpp +SRCS += Effects/Effect.cpp +SRCS += Effects/Gravity.cpp + SRCS += input/inputManager.cpp -OBJS = ${SRCS:.cpp=.o} +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 -TARGET = ../run_physics -DEPEND = depend.mk +TARS := ${SRCS} ${HRDS} Makefile +VERBOSE := 0 + +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 + .PHONY: all all: ${TARGET} ${TARGET}: ${OBJS} - ${CXX} ${CXXFLAGS} -o ${TARGET} $^ ${LIBS} + ${Q1}echo "${CXX}: $@" + ${Q2}${CXX} ${CXXFLAGS} -o ${TARGET} $^ ${LIBS} + +# rule to make a depend file from a .cpp +%.d: %.cpp + ${Q1}echo "DEP: $@" + ${Q2}${CXX} -M ${CXXFLAGS} $< | sed 's,: , $@: ,' > $@ -.PHONY: depend -depend: ${SRCS} - ${CXX} -MM $^ > ${DEPEND} +# rule to make an object file from a .cpp +%.o: %.cpp + ${Q1}echo "${CXX}: $@" + ${Q2}${CXX} ${CXXFLAGS} -c -o $@ $< .PHONY: clean clean: - rm -f ${OBJS} ${TARGET} *~ + ${Q1}echo "CLEAN: OBJS" + ${Q2}rm -f ${OBJS} + ${Q1}echo "CLEAN: TARGET" + ${Q2}rm -f ${TARGET} .PHONY: distclean distclean: clean - rm -f tags depend.mk - touch depend.mk + ${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 $^ -tar: clean - cd ..; tar -cjf bluestar.tar.bz2 images/ source/ +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 +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} -include ${DEPEND} +.PHONY: val +val: all + valgrind --leak-check=full ${TARGET} + +.PHONY: prof +prof: all + ${TARGET} + gprof -b ${TARGET} > prof + kprof -f prof +-include ${DEPENDS}