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