]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
new classes; yajl library
[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 serializable.cc \
25 serializable.hh \
26 serializer.cc \
27 serializer.hh \
28 settings.cc \
29 settings.hh \
30 singleton.hh \
31 stringtools.cc \
32 stringtools.hh \
33 texture.cc \
34 texture.hh \
35 thread.hh \
36 timer.cc \
37 timer.hh \
38 vector.hh \
39 video.cc \
40 video.hh \
41 $(ENDLIST)
42
43 libdc_a_CPPFLAGS = -I/usr/include/SDL -I$(top_srcdir)/yajl/src -O3
44 #libdc_a_LDFLAGS = -lstdc++ -lSDL_image -lSDL_sound
45 libdc_a_LIBADD = $(top_srcdir)/yajl/libyajl.a
46
47
48 bin_PROGRAMS = yoink
49
50 yoink_SOURCES = \
51 YoinkApp.cc \
52 YoinkApp.hh \
53 $(ENDLIST)
54
55 yoink_CPPFLAGS = -I/usr/include/SDL -O3
56 #yoink_LDFLAGS = -lstdc++ -lSDL_image -lSDL_sound
57 yoink_LDADD = libdc.a ../yajl/libyajl.a
58
This page took 0.03516 seconds and 5 git commands to generate.