]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
minor refactoring and state progress
[chaz/yoink] / src / Makefile.am
1
2 #
3 # Yoink
4 # Process this file with automake to produce a Makefile.
5 #
6
7
8 #
9 # libmoof.a
10 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11
12 noinst_LIBRARIES = libmoof.a
13
14 libmoof_a_SOURCES = \
15 Moof/Aabb.cc \
16 Moof/Aabb.hh \
17 Moof/Camera.cc \
18 Moof/Camera.hh \
19 Moof/ConvertUTF.c \
20 Moof/ConvertUTF.h \
21 Moof/Cullable.hh \
22 Moof/Dispatcher.cc \
23 Moof/Dispatcher.hh \
24 Moof/Drawable.hh \
25 Moof/Engine.cc \
26 Moof/Engine.hh \
27 Moof/Entity.hh \
28 Moof/Event.hh \
29 Moof/Exception.hh \
30 Moof/Frustum.cc \
31 Moof/Frustum.hh \
32 Moof/Hash.cc \
33 Moof/Hash.hh \
34 Moof/Interpolator.hh \
35 Moof/Layer.hh \
36 Moof/Log.cc \
37 Moof/Log.hh \
38 Moof/Math.hh \
39 Moof/Mippleton.hh \
40 Moof/Octree.hh \
41 Moof/OpenGL.hh \
42 Moof/Plane.cc \
43 Moof/Plane.hh \
44 Moof/Random.cc \
45 Moof/Random.hh \
46 Moof/Rectangle.cc \
47 Moof/Rectangle.hh \
48 Moof/Resource.cc \
49 Moof/Resource.hh \
50 Moof/RigidBody.hh \
51 Moof/Script.hh \
52 Moof/Settings.cc \
53 Moof/Settings.hh \
54 Moof/Sound.cc \
55 Moof/Sound.hh \
56 Moof/Sphere.cc \
57 Moof/Sphere.hh \
58 Moof/StringTools.cc \
59 Moof/StringTools.hh \
60 Moof/Texture.cc \
61 Moof/Texture.hh \
62 Moof/Thread.hh \
63 Moof/Timer.cc \
64 Moof/Timer.hh \
65 Moof/Transition.hh \
66 Moof/Video.cc \
67 Moof/Video.hh \
68 Moof/fastevents.c \
69 Moof/fastevents.h \
70 $(ENDLIST)
71
72 libmoof_a_CPPFLAGS = -I$(top_srcdir)/src/Moof
73
74 EXTRA_DIST = Moof/cml Moof/stlplus
75
76
77 #
78 # yoink
79 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
80
81 bin_PROGRAMS = yoink
82
83 yoink_SOURCES = \
84 Animation.cc \
85 Animation.hh \
86 Character.cc \
87 Character.hh \
88 GameLayer.cc \
89 GameLayer.hh \
90 Heroine.cc \
91 Heroine.hh \
92 Hud.cc \
93 Hud.hh \
94 MainLayer.cc \
95 MainLayer.hh \
96 Scene.cc \
97 Scene.hh \
98 Tilemap.cc \
99 Tilemap.hh \
100 TilemapFont.cc \
101 TilemapFont.hh \
102 TitleLayer.cc \
103 TitleLayer.hh \
104 Typesetter.cc \
105 Typesetter.hh \
106 version.h \
107 $(ENDLIST)
108
109 if WIN32
110 yoink_SOURCES += yoink.rc yoink.ico
111 .rc.o:
112 @WINDRES@ -o $@ -i $<
113 endif
114
115 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
116 yoink_LDADD = libmoof.a
117
118
119 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
120
121 run: all
122 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
123
124 debug: all
125 $(YOINK_ENVIRONMENT) gdb ./yoink
126
This page took 0.040572 seconds and 5 git commands to generate.