X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=f3e6ad87fca69806166255f28fb9f94523ed94f5;hb=aa2791cf43a9ddd3a288e504db08e11d03439653;hp=e1b2afd46182c39df8147dadea7df6174e78e798;hpb=bf7e6563c98ce8818ede2d90da56f274887e5f82;p=physics.git diff --git a/Makefile b/Makefile index e1b2afd..f3e6ad8 100644 --- a/Makefile +++ b/Makefile @@ -14,30 +14,21 @@ CXXFLAGS := ${MYFLAGS} ${DBGFLAGS} CXX := g++ DIRS := # := start -DIRS += ./ -DIRS += Entities/ -DIRS += GameStates/ -DIRS += Effects/ -DIRS += config/ -DIRS += input/ -DIRS += graphics/ -DIRS += locks/ SRCSDIR := src/ SRCS := # := start -# include all of the files.mk -include $(addprefix ${SRCSDIR},$(addsuffix files.mk,${DIRS})) - -WORKINGDIR := bind/ - OBJSDIR := objsd/ -OBJS := ${SRCS:.cpp=.o} -OBJS := $(addprefix ${OBJSDIR},${OBJS}) +OBJS := # := start DEPSDIR := deps/ -DEPS := ${SRCS:.cpp=.d} -DEPS := $(addprefix ${DEPSDIR},${DEPS}) +DEPS := # := start + +# include all of the dir.mk +DIRMK := dir.mk +include ${SRCSDIR}${DIRMK} + +WORKINGDIR := bind/ CFGDIRNAME := configs/ SRCCFGDIR := ${CFGDIRNAME} @@ -51,27 +42,29 @@ TARGETNAME := run_physics TARGETTMP := ${OBJSDIR}${TARGETNAME} TARGET := ${WORKINGDIR}${TARGETNAME} -DEPSBLDDIRS := $(addprefix ${DEPSDIR},${DIRS}) -OBJSBLDDIRS := $(addprefix ${OBJSDIR},${DIRS}) +DEPSBLDDIRS := ${DEPSDIR} $(addprefix ${DEPSDIR},${DIRS}) +OBJSBLDDIRS := ${OBJSDIR} $(addprefix ${OBJSDIR},${DIRS}) BLDDIRS := ${OBJSBLDDIRS} ${DEPSBLDDIRS} ${WORKINGDIR} ${DSTCFGDIR} +INCDIRS := ${SRCSDIR} + + +PRNTFMT := printf "%-5s: %s\n" VERBOSE := 0 ifeq (${VERBOSE},0) - # quiet the echo command + # quiet the printf command Q1 := @ # quiet the command that is `replaced' by an echo Q2 := @ else - # EAT the echo command as if it was not there + # EAT the printf 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 -PRNTFMT := printf "%-5s: %s\n" - .PHONY: all all: ${TARGET} ${CFGS} @@ -87,44 +80,43 @@ ${TARGET}: ${TARGETTMP} | ${WORKINGDIR} # how to make a directory ${BLDDIRS}: + ${Q1}${PRNTFMT} "mkdir" "$@" ${Q2}mkdir -p $@ +# cause the below directory rules to work out +.SECONDEXPANSION: + # rule to make an object file from a .cpp -${OBJSDIR}%.o: ${SRCSDIR}%.cpp | ${OBJSBLDDIRS} +${OBJSDIR}%.o: ${SRCSDIR}%.cpp | $$(dir $$@) ${Q1}${PRNTFMT} "${CXX}" "$@" - ${Q2}${CXX} ${CXXFLAGS} -c -o $@ $< + ${Q2}${CXX} ${CXXFLAGS} -c -o $@ $< -I "${INCDIRS}" # rule to make a depend file from a .cpp # be clever and escape the / chars in file paths # DON'T simply use another sed delimiter or it can't appear in the file paths -${DEPSDIR}%.d: ${SRCSDIR}%.cpp | ${DEPSBLDDIRS} +${DEPSDIR}%.d: ${SRCSDIR}%.cpp | $$(dir $$@) ${Q1}${PRNTFMT} "DEP" "$@" - ${Q2}${CXX} -MM ${CXXFLAGS} $< | \ + ${Q2}${CXX} -MM ${CXXFLAGS} $< -I "${INCDIRS}" | \ sed 's/\(^.*\):/$(subst /,\/,${OBJSDIR}\1 $@):/' > $@ # rule to copy the config files into the working directory -${DSTCFGDIR}%.cfg: ${SRCCFGDIR}%.cfg | ${DSTCFGDIR} +${DSTCFGDIR}%.cfg: ${SRCCFGDIR}%.cfg | $$(dir $$@) ${Q1}${PRNTFMT} "cp" "$@" ${Q2}cp $< $@ -tags: ${SRCS} - ${Q1}${PRNTFMT} "ctags" "$@" - ${Q2}ctags $^ - - .PHONY: clean clean: - ${Q1}${PRNTFMT} "CLEAN" "OBJS" - ${Q2}rm -f ${OBJS} - ${Q1}${PRNTFMT} "CLEAN" "TARGET" + ${Q1}${PRNTFMT} "rm" "${OBJSDIR}" + ${Q2}rm -rf ${OBJSDIR} + ${Q1}${PRNTFMT} "rm" "${TARGET} ${TARGETTMP}" ${Q2}rm -f ${TARGET} .PHONY: distclean distclean: clean - ${Q1}${PRNTFMT} "CLEAN" "DEPS" - ${Q2}rm -f ${DEPS} - ${Q1}${PRNTFMT} "CLEAN" "tags prof gmon.out" + ${Q1}${PRNTFMT} "rm" "${DEPSDIR}" + ${Q2}rm -rf ${DEPSDIR} + ${Q1}${PRNTFMT} "rm" "tags prof gmon.out" ${Q2}rm -f tags prof gmon.out .PHONY: gitclean @@ -164,8 +156,8 @@ val: all .PHONY: prof prof: run - cd ${WORKINGDIR}; gprof -b ${TARGETNAME} > src/prof - kprof -f prof + cd ${WORKINGDIR}; gprof -b ${TARGETNAME} > prof + cd ${WORKINGDIR}; kprof -f prof MINGMAKEARGS := "LIBGL := -lopengl32 -lglu32" \ @@ -190,4 +182,5 @@ final: ${Q1}${PRNTFMT} "make" "final" ${Q2}${MAKE} ${FINALMAKEARGS} clean all + -include ${DEPS}