X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=88dfc85d25dfe291fcbed3c75e811d6bdc9d7f5e;hb=47b9b09edc66fc0822b7f9cf7623ae3a98430ff2;hp=e50347dde3b48217fb3e95b09773a45297e095fa;hpb=16f1445959244e40f1d68afb175a87c613e4b6f0;p=physics.git diff --git a/Makefile b/Makefile index e50347d..88dfc85 100644 --- a/Makefile +++ b/Makefile @@ -14,14 +14,6 @@ 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 @@ -33,45 +25,64 @@ DEPSDIR := deps/ DEPS := # := start # include all of the dir.mk -include $(addprefix ${SRCSDIR},$(addsuffix dir.mk,${DIRS})) +DIRMK := dir.mk +include ${SRCSDIR}${DIRMK} WORKINGDIR := bind/ -CFGDIRNAME := configs/ -SRCCFGDIR := ${CFGDIRNAME} -DSTCFGDIR := ${WORKINGDIR}${CFGDIRNAME} +CFGDIRNAME := configs/ +SRCCFGDIR := ${CFGDIRNAME} +DSTCFGDIR := ${WORKINGDIR}${CFGDIRNAME} CFGS := # := start CFGS += keys.cfg CFGS := $(addprefix ${DSTCFGDIR},${CFGS}) +SRCLIBSDIR := libs/ +DSTLIBSDIR := ${WORKINGDIR} + +LIBSTXT := # := start +LIBSTXT += COPYING-SDL +LIBSTXT += README-SDL +LIBSTXT += VERSION-SDL +LIBSTXT := $(addprefix ${DSTLIBSDIR},${LIBSTXT}) + +LIBSCPY := # := start +LIBSCPY += libSDL.so +LIBSCPY := $(addprefix ${DSTLIBSDIR},${LIBSCPY}) + 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 .PHONY: all -all: ${TARGET} ${CFGS} +all: ${TARGET} ${CFGS} ${LIBSTXT} ${LIBSCPY} + +# cause the fancy $$ directory rules to work out +.SECONDEXPANSION: # how to link the main target ${TARGETTMP}: ${OBJS} @@ -83,47 +94,59 @@ ${TARGET}: ${TARGETTMP} | ${WORKINGDIR} ${Q1}${PRNTFMT} "cp" "$@" ${Q2}cp $< $@ +# rule to copy the config files into the working directory +${DSTCFGDIR}%.cfg: ${SRCCFGDIR}%.cfg | $$(dir $$@) + ${Q1}${PRNTFMT} "cp" "$@" + ${Q2}cp $< $@ + +# rule to copy the library files into the working directory +${DSTLIBSDIR}%: ${SRCLIBSDIR}% | $$(dir $$@) + ${Q1}${PRNTFMT} "cp" "$@" + ${Q2}cp $< $@ + # how to make a directory ${BLDDIRS}: + ${Q1}${PRNTFMT} "mkdir" "$@" ${Q2}mkdir -p $@ # 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} - ${Q1}${PRNTFMT} "cp" "$@" - ${Q2}cp $< $@ - - -tags: ${SRCS} - ${Q1}${PRNTFMT} "ctags" "$@" - ${Q2}ctags $^ +.PHONY: cleantarget +cleantarget: + ${Q1}${PRNTFMT} "rm" "${TARGET}" + ${Q2}rm -f ${TARGET} +.PHONY: cleanbin +cleanbin: + ${Q1}${PRNTFMT} "rm" "${WORKINGDIR}" + ${Q2}rm -rf ${WORKINGDIR} -.PHONY: clean -clean: +.PHONY: cleanobjs +cleanobjs: ${Q1}${PRNTFMT} "rm" "${OBJSDIR}" ${Q2}rm -rf ${OBJSDIR} - ${Q1}${PRNTFMT} "rm" "${TARGET} ${TARGETTMP}" - ${Q2}rm -f ${TARGET} -.PHONY: distclean -distclean: clean +.PHONY: cleandeps +cleandeps: ${Q1}${PRNTFMT} "rm" "${DEPSDIR}" ${Q2}rm -rf ${DEPSDIR} - ${Q1}${PRNTFMT} "rm" "tags prof gmon.out" - ${Q2}rm -f tags prof gmon.out + +.PHONY: clean +clean: cleanobjs + +.PHONY: cleanall +cleanall: clean cleanbin cleandeps .PHONY: gitclean gitclean: @@ -162,12 +185,13 @@ 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" \ "LIBSDL := `/usr/mingw32/bin/sdl-config --libs`" \ + "LIBSCPY := $(addprefix ${DSTLIBSDIR},SDL.dll)" \ "CXXFLAGS := ${OPTFLAGS}" \ "CXX := mingw32-g++" \ "OBJSDIR := objs-mingw32/" \ @@ -188,4 +212,5 @@ final: ${Q1}${PRNTFMT} "make" "final" ${Q2}${MAKE} ${FINALMAKEARGS} clean all + -include ${DEPS}