diff options
author | dan miller | 2007-10-19 05:15:33 +0000 |
---|---|---|
committer | dan miller | 2007-10-19 05:15:33 +0000 |
commit | 79eca25c945a535a7a0325999034bae17da92412 (patch) | |
tree | 40ff433d94859d629aac933d5ec73b382f62ba1a /libraries/ode-0.9/drawstuff/src/Makefile.am | |
parent | adding ode source to /libraries (diff) | |
download | opensim-SC_OLD-79eca25c945a535a7a0325999034bae17da92412.zip opensim-SC_OLD-79eca25c945a535a7a0325999034bae17da92412.tar.gz opensim-SC_OLD-79eca25c945a535a7a0325999034bae17da92412.tar.bz2 opensim-SC_OLD-79eca25c945a535a7a0325999034bae17da92412.tar.xz |
resubmitting ode
Diffstat (limited to 'libraries/ode-0.9/drawstuff/src/Makefile.am')
-rw-r--r-- | libraries/ode-0.9/drawstuff/src/Makefile.am | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libraries/ode-0.9/drawstuff/src/Makefile.am b/libraries/ode-0.9/drawstuff/src/Makefile.am new file mode 100644 index 0000000..ed9b2f5 --- /dev/null +++ b/libraries/ode-0.9/drawstuff/src/Makefile.am | |||
@@ -0,0 +1,21 @@ | |||
1 | # We build drawstuff as a non libtool static library manually | ||
2 | # so it doesn't get installed when 'make install' is called, | ||
3 | # drawstuff is meant as an aid for testing and not as a full | ||
4 | # rendering library. | ||
5 | |||
6 | noinst_LIBRARIES = libdrawstuff.a | ||
7 | libdrawstuff_a_SOURCES = drawstuff.cpp internal.h | ||
8 | libdrawstuff_a_CXXFLAGS = @ARCHFLAGS@ -I$(top_srcdir)/include -I$(top_builddir)/include | ||
9 | |||
10 | # libdrawstuff_a_LIBADD = @GL_LIBS@ | ||
11 | |||
12 | if WIN32 | ||
13 | libdrawstuff_a_SOURCES+= windows.cpp | ||
14 | endif | ||
15 | if X11 | ||
16 | libdrawstuff_a_SOURCES+= x11.cpp | ||
17 | endif | ||
18 | if OSX | ||
19 | libdrawstuff_a_SOURCES+= osx.cpp | ||
20 | endif | ||
21 | |||