]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
fixed up video and texture handling
[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/Camera.hh \
9 Moof/ConvertUTF.c \
10 Moof/ConvertUTF.h \
11 Moof/Cullable.hh \
12 Moof/Deserializer.cc \
13 Moof/Deserializer.hh \
14 Moof/Dispatcher.cc \
15 Moof/Dispatcher.hh \
16 Moof/Drawable.hh \
17 Moof/Engine.cc \
18 Moof/Engine.hh \
19 Moof/Event.hh \
20 Moof/Interpolator.hh \
21 Moof/Math.hh \
22 Moof/Mippleton.hh \
23 Moof/OpenGL.cc \
24 Moof/OpenGL.hh \
25 Moof/Profiler.hh \
26 Moof/Random.cc \
27 Moof/Random.hh \
28 Moof/Resource.cc \
29 Moof/Resource.hh \
30 Moof/Scene.cc \
31 Moof/Scene.hh \
32 Moof/Serializable.cc \
33 Moof/Serializable.hh \
34 Moof/Serializer.cc \
35 Moof/Serializer.hh \
36 Moof/Settings.cc \
37 Moof/Settings.hh \
38 Moof/Singleton.hh \
39 Moof/StringTools.cc \
40 Moof/StringTools.hh \
41 Moof/Texture.cc \
42 Moof/Texture.hh \
43 Moof/Thread.hh \
44 Moof/Tilemap.cc \
45 Moof/Tilemap.hh \
46 Moof/Timer.cc \
47 Moof/Timer.hh \
48 Moof/Video.cc \
49 Moof/Video.hh \
50 Moof/fastevents.c \
51 Moof/fastevents.h \
52 $(ENDLIST)
53
54 libmoof_la_CPPFLAGS = -I$(top_srcdir)/src/Moof -I$(top_srcdir)/yajl/src
55 libmoof_la_LIBADD = $(top_srcdir)/yajl/libyajl.la
56
57
58 bin_PROGRAMS = yoink
59
60 yoink_SOURCES = \
61 Character.cc \
62 Character.hh \
63 TilemapFont.cc \
64 TilemapFont.hh \
65 Typesetter.cc \
66 Typesetter.hh \
67 YoinkApp.cc \
68 YoinkApp.hh \
69 $(ENDLIST)
70
71 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
72 yoink_LDADD = libmoof.la
73
74
75 EXTRA_DIST = Moof/cml
76
77
78 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data" \
79 YOINKRC="$(top_srcdir)/data/yoinkrc"
80
81 run: all
82 $(YOINK_ENVIRONMENT) ./yoink
83
84 debug: all
85 $(YOINK_ENVIRONMENT) gdb ./yoink
86
This page took 0.031783 seconds and 4 git commands to generate.