]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
a7598d40e740b65482534a8c936e59edd1cfd2e3
[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/RK4.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 $(ENDLIST)
107
108 if WIN32
109 yoink_SOURCES += yoink.rc yoink.ico
110 .rc.o:
111 @WINDRES@ -o $@ -i $<
112 endif
113
114 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
115 yoink_LDADD = libmoof.a
116
117
118 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
119
120 run: all
121 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
122
123 debug: all
124 $(YOINK_ENVIRONMENT) gdb ./yoink
125
This page took 0.034476 seconds and 3 git commands to generate.