blob: 166aa99321f21d216e91af1dcc75f38e934f37ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
INCLUDES = -I$(top_srcdir)/src
METASOURCES = AUTO
if BUILD_DEDICATED
noinst_LTLIBRARIES =
else
noinst_LTLIBRARIES = librender.la
endif
librender_la_LDFLAGS = -avoid-version -no-undefined @GL_LIBS@
librender_la_LIBADD = $(top_builddir)/src/math/libmath.la
librender_la_SOURCES = camera.cc draw.cc gl.cc image.cc render.cc text.cc \
textures.cc tga.cc
noinst_HEADERS = camera.h draw.h gl.h image.h render.h text.h textures.h tga.h
|