]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
extreme refactoring
[chaz/yoink] / src / Makefile.am
1
2 noinst_LTLIBRARIES = libmoof.la
3
4 libmoof_la_SOURCES = \
5 Moof/Aabb.hh \
6 Moof/Animation.cc \
7 Moof/Animation.hh \
8 Moof/ConvertUTF.c \
9 Moof/ConvertUTF.h \
10 Moof/Deserializer.cc \
11 Moof/Deserializer.hh \
12 Moof/Dispatcher.cc \
13 Moof/Dispatcher.hh \
14 Moof/Drawable.hh \
15 Moof/Engine.cc \
16 Moof/Engine.hh \
17 Moof/Event.hh \
18 Moof/Interpolator.hh \
19 Moof/Math.hh \
20 Moof/Mippleton.hh \
21 Moof/OpenGL.hh \
22 Moof/Profiler.hh \
23 Moof/Random.cc \
24 Moof/Random.hh \
25 Moof/Resource.cc \
26 Moof/Resource.hh \
27 Moof/Scene.cc \
28 Moof/Scene.hh \
29 Moof/Serializable.cc \
30 Moof/Serializable.hh \
31 Moof/Serializer.cc \
32 Moof/Serializer.hh \
33 Moof/Settings.cc \
34 Moof/Settings.hh \
35 Moof/Singleton.hh \
36 Moof/StringTools.cc \
37 Moof/StringTools.hh \
38 Moof/Texture.cc \
39 Moof/Texture.hh \
40 Moof/Thread.hh \
41 Moof/Tilemap.cc \
42 Moof/Tilemap.hh \
43 Moof/Timer.cc \
44 Moof/Timer.hh \
45 Moof/Video.cc \
46 Moof/Video.hh \
47 Moof/fastevents.c \
48 Moof/fastevents.h \
49 $(ENDLIST)
50
51 libmoof_la_CPPFLAGS = -I$(top_srcdir)/src/Moof -I$(top_srcdir)/yajl/src
52 libmoof_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_CPPFLAGS = -I$(top_srcdir)/src/Moof
69 yoink_LDADD = libmoof.la
70
71
72 EXTRA_DIST = Moof/cml
73
74
75 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data" \
76 YOINKRC="$(top_srcdir)/data/yoinkrc"
77
78 run: all
79 $(YOINK_ENVIRONMENT) ./yoink
80
81 debug: all
82 $(YOINK_ENVIRONMENT) gdb ./yoink
83
This page took 0.041888 seconds and 5 git commands to generate.