]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
0c9b062b892dff0e614e8e0a69ead4133e625120
[chaz/yoink] / src / Makefile.am
1
2 noinst_LTLIBRARIES = libdc.la
3
4 libdc_la_SOURCES = \
5 ConvertUTF.c \
6 ConvertUTF.h \
7 aabb.hh \
8 animation.cc \
9 animation.hh \
10 deserializer.cc \
11 deserializer.hh \
12 dispatcher.cc \
13 dispatcher.hh \
14 drawable.hh \
15 engine.cc \
16 engine.hh \
17 event.hh \
18 fastevents.c \
19 fastevents.h \
20 interpolator.hh \
21 math.hh \
22 mippleton.hh \
23 opengl.hh \
24 profiler.hh \
25 random.cc \
26 random.hh \
27 resource.cc \
28 resource.hh \
29 scene.cc \
30 scene.hh \
31 serializable.cc \
32 serializable.hh \
33 serializer.cc \
34 serializer.hh \
35 settings.cc \
36 settings.hh \
37 singleton.hh \
38 stringtools.cc \
39 stringtools.hh \
40 texture.cc \
41 texture.hh \
42 thread.hh \
43 tilemap.cc \
44 tilemap.hh \
45 timer.cc \
46 timer.hh \
47 video.cc \
48 video.hh \
49 $(ENDLIST)
50
51 libdc_la_CPPFLAGS = -I$(top_srcdir)/yajl/src
52 libdc_la_LIBADD = $(top_srcdir)/yajl/libyajl.la
53
54
55 bin_PROGRAMS = yoink
56
57 yoink_SOURCES = \
58 Character.cc \
59 Character.hh \
60 TilemapFont.cc \
61 TilemapFont.hh \
62 Typesetter.cc \
63 Typesetter.hh \
64 YoinkApp.cc \
65 YoinkApp.hh \
66 $(ENDLIST)
67
68 yoink_LDADD = libdc.la
69
70
71 EXTRA_DIST = cml
72
73
74 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data" \
75 YOINKRC="$(top_srcdir)/data/yoinkrc"
76
77 run: all
78 $(YOINK_ENVIRONMENT) ./yoink
79
80 debug: all
81 $(YOINK_ENVIRONMENT) gdb ./yoink
82
This page took 0.037585 seconds and 3 git commands to generate.