diff options
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, 0 insertions, 21 deletions
diff --git a/libraries/ode-0.9/drawstuff/src/Makefile.am b/libraries/ode-0.9/drawstuff/src/Makefile.am deleted file mode 100644 index ed9b2f5..0000000 --- a/libraries/ode-0.9/drawstuff/src/Makefile.am +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
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 | |||