X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile;h=95fdbfc78c5cfb058bb3c6cc4ff448a0500fe8b4;hb=0376f786586cb8183437837007be8df7f054fb80;hp=c25ab1b6040520cdb4d18d2b97e0533506c7cc06;hpb=ad9f1fb6bdfc51df61a7fb52d607ca0c0bceca4c;p=physics.git diff --git a/src/Makefile b/src/Makefile index c25ab1b..95fdbfc 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,53 +1,133 @@ -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 +CXXFLAGS := -Wall -pedantic -ansi ${DBGFLAGS} -SRCS = Vector2.cpp ticks.cpp main.cpp game.cpp entityManager.cpp gldraw.cpp graphics.cpp -OBJS = ${SRCS:.cpp=.o} +VALFLAGS := --leak-check=full -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 -# set default action for a *.cc to create a *.o -.cpp.o: - g++ -c $< ${CXXFLAGS} +DIRS := # := start +DIRS += . +DIRS += Entities +DIRS += GameStates +DIRS += Effects +DIRS += config +DIRS += input +DIRS += graphics -all: ${TARGETS} +include $(addsuffix /files.mk,${DIRS}) -depend: - ${CXX} -MM ${SRCS} > ${DEPEND} +OBJSDIR := ../objs/ +OBJS := ${SRCS:.cpp=.o} +OBJS := $(addprefix ${OBJSDIR},${OBJS}) -tags: - ctags ${SRCS} +DEPSDIR := ../deps/ +DEPS := ${SRCS:.cpp=.d} +DEPS := $(addprefix ${DEPSDIR},${DEPS}) -clean: - rm -f ${OBJS} ${TARGETS} *~ +HRDS := ${SRCS:.cpp=.h} +HRDS := $(filter-out main.h,$HRDS) # remove main.h +HRDS += debug.h -distclean: clean - rm -f tags depend.mk - touch depend.mk +HRDS += graphics/colors.h + +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 -# i need to find a nice way of ijnoring .svn folders for the below -tar: clean - cd ..; tar -cjf bluestar.tar.bz2 images/ source/ +.PHONY: all +all: ${TARGET} + echo "${SRCS}" + echo "${FILES}" +${TARGET}: ${OBJS} + ${Q1}echo "${CXX}: $@" + ${Q2}${CXX} ${CXXFLAGS} -o $@ $^ ${LIBS} -run: ../run_physics +# rule to make a depend file from a .cpp +${DEPSDIR}%.d: %.cpp + ${Q1}echo "DEP: $@" + ${Q2}${CXX} -MM ${CXXFLAGS} $< | sed 's,: , $@: ,' > $@ + +# rule to make an object file from a .cpp +${OBJSDIR}%.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: DEPS" + ${Q2}rm -f ${DEPS} + ${Q1}echo "CLEAN: tags prof gmon.out" + ${Q2}rm -f tags prof gmon.out + +.PHONY: gitclean +gitclean: + ${Q1}echo "git-clean: show, use gitcleanf to force" + ${Q2}cd ..; git clean -nxd + +.PHONY: gitcleanf +gitcleanf: + ${Q1}echo "git-clean: forced" + ${Q2}cd ..; git clean -fxd + +tags: ${SRCS} + ctags $^ + +.PHONY: tar +tar: ../physics.tar.bz2 + +.PHONY: ../physics.tar.bz2 +../physics.tar.bz2: + @echo "git-archive: Warning, archives HEAD not current" + ${Q1}echo "git-archive: ../physics.tar.bz2" + ${Q2}cd ..; git-archive --prefix=physics/ HEAD | bzip2 > physics.tar.bz2 + +.PHONY: run +run: all cd ..; ./run_physics -../run_physics: ${OBJS} - ${CXX} ${CXXFLAGS} -o ../run_physics ${OBJS} ${LIBS} +.PHONY: gdb +gdb: all + gdb ${TARGET} -Entities.d: - cd Entities; make +.PHONY: val +val: all + valgrind ${VALFLAGS} ${TARGET} -include ${DEPEND} +.PHONY: prof +prof: all + ${TARGET} + gprof -b ${TARGET} > prof + kprof -f prof +-include ${DEPS}