Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorman Lin <nlin@nlin.net>2002-10-18 19:02:02 +0400
committerNorman Lin <nlin@nlin.net>2002-10-18 19:02:02 +0400
commitbdad961ce365f6a57f12832b5ba763525ac164fb (patch)
tree920c54fc077f20b7ac5632e1dfa3a2fc5194e7d8 /extern/ode/dist/config/makefile.mingw
parent1b1596178640ac4b0b75fd4b97ff08399a4c075d (diff)
checkin of ODE library. Do not modify the ODE source code; instead, follow the
development of ode at http://q12.org and periodically copy the q12.org ODE sourcecode into this tree to update the Blender ODE. This ODE has not been changed from q12.org and is provided here merely as a convenience to Blender developers.
Diffstat (limited to 'extern/ode/dist/config/makefile.mingw')
-rw-r--r--extern/ode/dist/config/makefile.mingw28
1 files changed, 28 insertions, 0 deletions
diff --git a/extern/ode/dist/config/makefile.mingw b/extern/ode/dist/config/makefile.mingw
new file mode 100644
index 00000000000..4b18fb6bcdc
--- /dev/null
+++ b/extern/ode/dist/config/makefile.mingw
@@ -0,0 +1,28 @@
+WINDOWS=1
+THIS_DIR=
+DEL_CMD=tools\rm
+CC=gcc
+OBJ=.o
+C_FLAGS=-c -Wall -fno-exceptions -fno-rtti -DWIN32
+C_INC=-I
+C_OUT=-o
+C_EXEOUT=-o
+C_DEF=-D
+C_OPT=-O
+AR=ar rc
+RANLIB=
+LIB_PREFIX=lib
+LIB_SUFFIX=.a
+LINK_OPENGL=-lComctl32 -lkernel32 -luser32 -lgdi32 -lOpenGL32 -lGlu32
+LINK_MATH=-lm
+RC_RULE=windres -I rc -O coff $< $@
+
+ifeq ($(BUILD),release)
+OPT=2
+C_FLAGS+=-fomit-frame-pointer -ffast-math
+endif
+
+ifeq ($(BUILD),debug)
+OPT=0
+C_FLAGS+=-g
+endif