diff options
author | dan miller | 2007-10-19 05:20:48 +0000 |
---|---|---|
committer | dan miller | 2007-10-19 05:20:48 +0000 |
commit | d48ea5bb797037069d641da41da0f195f0124491 (patch) | |
tree | 40ff433d94859d629aac933d5ec73b382f62ba1a /libraries/ode-0.9/tests/Makefile.am | |
parent | dont ask (diff) | |
download | opensim-SC_OLD-d48ea5bb797037069d641da41da0f195f0124491.zip opensim-SC_OLD-d48ea5bb797037069d641da41da0f195f0124491.tar.gz opensim-SC_OLD-d48ea5bb797037069d641da41da0f195f0124491.tar.bz2 opensim-SC_OLD-d48ea5bb797037069d641da41da0f195f0124491.tar.xz |
one more for the gipper
Diffstat (limited to 'libraries/ode-0.9/tests/Makefile.am')
-rw-r--r-- | libraries/ode-0.9/tests/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libraries/ode-0.9/tests/Makefile.am b/libraries/ode-0.9/tests/Makefile.am new file mode 100644 index 0000000..078f934 --- /dev/null +++ b/libraries/ode-0.9/tests/Makefile.am | |||
@@ -0,0 +1,26 @@ | |||
1 | SUBDIRS = CppTestHarness | ||
2 | |||
3 | AM_CXXFLAGS = @ARCHFLAGS@ @CXXFLAGS@ -I$(top_srcdir)/include -I$(top_srcdir)/tests/CppTestHarness -I$(top_builddir)/include | ||
4 | AM_CFLAGS = @ARCHFLAGS@ @CXXFLAGS@ -I$(top_srcdir)/include -I$(top_srcdir)/tests/CppTestHarness -I$(top_builddir)/include | ||
5 | |||
6 | |||
7 | noinst_PROGRAMS=ode_unit_test | ||
8 | |||
9 | ode_unit_test_SOURCES = \ | ||
10 | main.cpp \ | ||
11 | colliders/box_sphere.cpp | ||
12 | |||
13 | ode_unit_test_DEPENDENCIES = \ | ||
14 | $(top_builddir)/ode/src/libode.a \ | ||
15 | $(top_builddir)/tests/CppTestHarness/libodetest.a | ||
16 | |||
17 | ode_unit_test_LDFLAGS = \ | ||
18 | -L$(top_builddir)/ode/src \ | ||
19 | -L$(top_builddir)/tests/CppTestHarness \ | ||
20 | @LDFLAGS@ | ||
21 | |||
22 | ode_unit_test_LDADD = \ | ||
23 | $(top_builddir)/ode/src/libode.a \ | ||
24 | $(top_builddir)/tests/CppTestHarness/libodetest.a \ | ||
25 | @GL_LIBS@ @LIBS@ | ||
26 | |||