blob: 31b85678cdf52ad8e262b6df5b492eff6e702d1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
AM_CPPFLAGS = -I$(top_srcdir)/src
METASOURCES = AUTO
if BUILD_DEDICATED
noinst_LTLIBRARIES =
else
noinst_LTLIBRARIES = librender.la
endif
noinst_HEADERS = \
camera.h \
debugdrawer.h \
draw.h \
dust.h \
gl.h \
image.h \
jpgfile.h \
light.h \
lightenvironment.h \
particle.h \
particleejector.h \
particlesystem.h \
particleejectorscript.h \
particlesystemscript.h \
pngfile.h \
render.h \
renderext.h \
screenshot.h \
state.h \
text.h \
textures.h \
tgafile.h
librender_la_SOURCES = \
camera.cc \
debugdrawer.cc \
draw.cc \
dust.cc \
gl.cc \
image.cc \
jpgfile.cc \
light.cc \
lightenvironment.cc \
particle.cc \
particleejector.cc \
particlesystem.cc \
particleejectorscript.cc \
particlesystemscript.cc \
pngfile.cc \
render.cc \
renderext.cc \
screenshot.cc \
state.cc \
text.cc \
textures.cc \
tgafile.cc
librender_la_DEPENDENCIES = \
$(top_builddir)/src/auxiliary/libauxiliary.la \
$(top_builddir)/src/math/libmath.la \
$(top_builddir)/src/sys/libsys.la \
$(top_builddir)/src/filesystem/libfilesystem.la \
$(top_builddir)/src/model/libmodel.la \
$(top_builddir)/src/core/libcore.la
librender_la_LDFLAGS = -avoid-version -no-undefined
librender_la_LIBADD =
|