]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
new classes: resource, tilemap, animation
[chaz/yoink] / src / Makefile.am
1
2 noinst_LIBRARIES = libdc.a
3
4 libdc_a_SOURCES = \
5 ConvertUTF.c \
6 ConvertUTF.h \
7 deserializer.cc \
8 deserializer.hh \
9 dispatcher.cc \
10 dispatcher.hh \
11 engine.cc \
12 engine.hh \
13 fastevents.c \
14 fastevents.h \
15 math.cc \
16 math.hh \
17 matrix.hh \
18 opengl.hh \
19 quaternion.hh \
20 random.cc \
21 random.hh \
22 rectangle.cc \
23 rectangle.hh \
24 resource.cc \
25 resource.hh \
26 serializable.cc \
27 serializable.hh \
28 serializer.cc \
29 serializer.hh \
30 settings.cc \
31 settings.hh \
32 singleton.hh \
33 stringtools.cc \
34 stringtools.hh \
35 texture.cc \
36 texture.hh \
37 thread.hh \
38 tilemap.hh \
39 timer.cc \
40 timer.hh \
41 vector.hh \
42 video.cc \
43 video.hh \
44 $(ENDLIST)
45
46 libdc_a_CPPFLAGS = -I/usr/include/SDL -I$(top_srcdir)/yajl/src -Wall
47 #libdc_a_LDFLAGS = -lstdc++ -lSDL_image -lSDL_sound
48 libdc_a_LIBADD = $(top_srcdir)/yajl/libyajl.a
49
50
51 bin_PROGRAMS = yoink
52
53 yoink_SOURCES = \
54 YoinkApp.cc \
55 YoinkApp.hh \
56 $(ENDLIST)
57
58 yoink_CPPFLAGS = -I/usr/include/SDL -Wall
59 #yoink_LDFLAGS = -lstdc++ -lSDL_image -lSDL_sound
60 yoink_LDADD = libdc.a libtinyxml.a ../yajl/libyajl.a
61
This page took 0.036827 seconds and 4 git commands to generate.