blob: ed9b2f5b64f13f8d56f89a8ddc1996612a86b14d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# We build drawstuff as a non libtool static library manually
# so it doesn't get installed when 'make install' is called,
# drawstuff is meant as an aid for testing and not as a full
# rendering library.
noinst_LIBRARIES = libdrawstuff.a
libdrawstuff_a_SOURCES = drawstuff.cpp internal.h
libdrawstuff_a_CXXFLAGS = @ARCHFLAGS@ -I$(top_srcdir)/include -I$(top_builddir)/include
# libdrawstuff_a_LIBADD = @GL_LIBS@
if WIN32
libdrawstuff_a_SOURCES+= windows.cpp
endif
if X11
libdrawstuff_a_SOURCES+= x11.cpp
endif
if OSX
libdrawstuff_a_SOURCES+= osx.cpp
endif
|