mirror of
https://github.com/nasa/trick.git
synced 2025-01-07 05:38:46 +00:00
b9c871328b
Added a 3 wheeled car example from the ODE demos. I collapsed all of the separate classes handling the world, objects, and drawings into a single class. Each world is different and just including that with the objects for these simple examples is easier. Same goes for the drawing. refs #172
12 lines
440 B
Makefile
12 lines
440 B
Makefile
|
|
ODE_HOME = ${HOME}/ode-0.14
|
|
|
|
TRICK_ICG_EXCLUDE = ${ODE_HOME}
|
|
TRICK_ICG_NOCOMMENT = ${ODE_HOME}
|
|
TRICK_SWIG_EXCLUDE = ${ODE_HOME}
|
|
|
|
TRICK_CFLAGS += -I${TRICK_HOME}/trick_models -I${ODE_HOME}/include -I${ODE_HOME}
|
|
TRICK_CXXFLAGS += -I${TRICK_HOME}/trick_models -I${ODE_HOME}/include -I${ODE_HOME}
|
|
|
|
TRICK_EXEC_LINK_LIBS += -L${ODE_HOME}/drawstuff/src/.libs -ldrawstuff -L${ODE_HOME}/ode/src/.libs -lode -lGLU -lGL -L/usr/X11R6/lib -lXext -lX11
|