X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=fd0cfb466c60966b2107ce43d571e7ba90daaf9a;hb=3df10f61d83257210e237ab9e03c8a39fe0aa1e4;hp=769b91d5d5beaafddba5a760a40003d26d509927;hpb=5ab56236b9cfb4f04aee7c93eb0c27e7bec9d600;p=physics.git diff --git a/Makefile b/Makefile index 769b91d..fd0cfb4 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,16 @@ -# set this on the command line to 1 to get a windows 32 build -WIN32 := 0 +# set this on the command line to get a WIN32 or a FINAL build +BUILD := DEBUG -# set this on the command line to 1 to get a final (none debug) build -FINAL := 0 - -ifeq (${WIN32},1) +ifeq (${BUILD},WIN32) LIBGL := -lopengl32 -lglu32 LIBSDL := `/usr/mingw32/bin/sdl-config --libs` else LIBGL := -lGL -lGLU LIBSDL := `sdl-config --libs` endif -LIBMY := -lpg +LIBMY := -lbear LIBS := ${LIBSDL} ${LIBGL} ${LIBMY} OPTFLAGS := -O2 @@ -26,17 +23,17 @@ RPATH := libs/ VALFLAGS := --leak-check=full LNKFLAGS := -Wl,-rpath,${RPATH} -ifeq (${WIN32},1) - CXXFLAGS := ${OPTFLAGS} +ifeq (${BUILD},WIN32) + CXXFLAGS := ${MYFLAGS} ${OPTFLAGS} else -ifeq (${FINAL},1) - CXXFLAGS := ${OPTFLAGS} +ifeq (${BUILD},FINAL) + CXXFLAGS := ${MYFLAGS} ${OPTFLAGS} else CXXFLAGS := ${MYFLAGS} ${DBGFLAGS} endif endif -ifeq (${WIN32},1) +ifeq (${BUILD},WIN32) CXX := mingw32-g++ else CXX := g++ @@ -47,10 +44,10 @@ DIRS := # := start SRCSDIR := src/ SRCS := # := start -ifeq (${WIN32},1) +ifeq (${BUILD},WIN32) OBJSDIR := objs-mingw32/ else -ifeq (${FINAL},1) +ifeq (${BUILD},FINAL) OBJSDIR := objs/ else OBJSDIR := objsd/ @@ -65,10 +62,10 @@ DEPS := # := start DIRMK := dir.mk include ${SRCSDIR}${DIRMK} -ifeq (${WIN32},1) +ifeq (${BUILD},WIN32) WORKINGDIR := bin-mingw32/ else -ifeq (${FINAL},1) +ifeq (${BUILD},FINAL) WORKINGDIR := bin/ else WORKINGDIR := bind/ @@ -85,7 +82,7 @@ CFGS := $(addprefix ${DSTCFGDIR},${CFGS}) LIBSDIRNAME := libs/ SRCLIBSDIR := ${LIBSDIRNAME} -ifeq (${WIN32},1) +ifeq (${BUILD},WIN32) DSTLIBSDIR := ${WORKINGDIR} else DSTLIBSDIR := ${WORKINGDIR}${LIBSDIRNAME} @@ -98,12 +95,12 @@ LIBSTXT += VERSION-SDL LIBSTXT := $(addprefix ${DSTLIBSDIR},${LIBSTXT}) LIBSCPY := # := start -ifeq (${WIN32},1) +ifeq (${BUILD},WIN32) LIBSCPY += SDL.dll - LIBSCPY += pg.dll + LIBSCPY += bear.dll else LIBSCPY += libSDL-1.2.so.0 - LIBSCPY += libpg.so.0 + LIBSCPY += libbear.so.0 endif LIBSCPY := $(addprefix ${DSTLIBSDIR},${LIBSCPY}) @@ -114,7 +111,7 @@ TXT := # := start TXT += COPYING TXT := $(addprefix ${DSTTXTDIR},${TXT}) -ifeq (${WIN32},1) +ifeq (${BUILD},WIN32) TARGETNAME := run_physics.exe else TARGETNAME := run_physics @@ -137,7 +134,7 @@ INCDIRS := ${SRCSDIR} INCFLAGS := $(addprefix -I, ${INCDIRS}) -ifeq (${WIN32},1) +ifeq (${BUILD},WIN32) PRNTFMT := printf "%-12s: %s\n" else PRNTFMT := printf "%-8s: %s\n"