]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
ede2a88ef378fe9e1ad94bb60bc8da2895666262
[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/Core.cc \
22 Moof/Core.hh \
23 Moof/Cullable.hh \
24 Moof/Dispatch.cc \
25 Moof/Dispatch.hh \
26 Moof/Drawable.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/Image.cc \
35 Moof/Image.hh \
36 Moof/Interpolator.hh \
37 Moof/Layer.hh \
38 Moof/Library.hh \
39 Moof/Line.hh \
40 Moof/Log.cc \
41 Moof/Log.hh \
42 Moof/Math.hh \
43 Moof/ModalDialog.hh \
44 Moof/Octree.hh \
45 Moof/OpenGL.hh \
46 Moof/Plane.cc \
47 Moof/Plane.hh \
48 Moof/Ray.hh \
49 Moof/Rectangle.cc \
50 Moof/Rectangle.hh \
51 Moof/Resource.cc \
52 Moof/Resource.hh \
53 Moof/RigidBody.hh \
54 Moof/Script.hh \
55 Moof/Settings.cc \
56 Moof/Settings.hh \
57 Moof/Shape.hh \
58 Moof/Sound.cc \
59 Moof/Sound.hh \
60 Moof/Sphere.hh \
61 Moof/StringTools.cc \
62 Moof/StringTools.hh \
63 Moof/Texture.cc \
64 Moof/Texture.hh \
65 Moof/Thread.hh \
66 Moof/Timer.cc \
67 Moof/Timer.hh \
68 Moof/Transition.hh \
69 Moof/Video.cc \
70 Moof/Video.hh \
71 Moof/fastevents.c \
72 Moof/fastevents.h \
73 $(ENDLIST)
74
75 libmoof_a_CPPFLAGS = -I$(top_srcdir)/src/Moof
76
77 EXTRA_DIST = Moof/cml Moof/stlplus
78
79
80 #
81 # yoink
82 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
83
84 bin_PROGRAMS = yoink
85
86 yoink_SOURCES = \
87 Animation.cc \
88 Animation.hh \
89 Character.cc \
90 Character.hh \
91 ErrorHandler.cc \
92 ErrorHandler.hh \
93 GameLayer.cc \
94 GameLayer.hh \
95 Heroine.cc \
96 Heroine.hh \
97 Hud.cc \
98 Hud.hh \
99 Main.cc \
100 Main.hh \
101 Scene.cc \
102 Scene.hh \
103 Tilemap.cc \
104 Tilemap.hh \
105 TilemapFont.cc \
106 TilemapFont.hh \
107 TitleLayer.cc \
108 TitleLayer.hh \
109 Typesetter.cc \
110 Typesetter.hh \
111 version.c \
112 version.h \
113 $(ENDLIST)
114
115 if WIN32
116 yoink_SOURCES += yoink.rc yoink.ico
117 .rc.o:
118 $(AM_V_GEN) $(WINDRES) -o $@ -i $<
119 endif
120
121 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
122 yoink_LDADD = libmoof.a
123
124
125 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
126
127 run: all
128 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
129
130 debug: all
131 $(YOINK_ENVIRONMENT) gdb ./yoink
132
This page took 0.036727 seconds and 4 git commands to generate.