]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
removed logging from script to fix compile error
[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/Backend.cc \
18 Moof/Backend.hh \
19 Moof/Camera.cc \
20 Moof/Camera.hh \
21 Moof/Contact.hh \
22 Moof/ConvertUTF.c \
23 Moof/ConvertUTF.h \
24 Moof/Cullable.hh \
25 Moof/Dispatch.cc \
26 Moof/Dispatch.hh \
27 Moof/Drawable.hh \
28 Moof/Entity.hh \
29 Moof/Error.hh \
30 Moof/Event.hh \
31 Moof/Frustum.cc \
32 Moof/Frustum.hh \
33 Moof/HashTools.cc \
34 Moof/HashTools.hh \
35 Moof/Image.cc \
36 Moof/Image.hh \
37 Moof/Interpolator.hh \
38 Moof/Line.hh \
39 Moof/Log.cc \
40 Moof/Log.hh \
41 Moof/Manager.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/Resource.cc \
50 Moof/Resource.hh \
51 Moof/RigidBody.hh \
52 Moof/Script.hh \
53 Moof/Settings.cc \
54 Moof/Settings.hh \
55 Moof/Shape.hh \
56 Moof/Sound.cc \
57 Moof/Sound.hh \
58 Moof/Sphere.hh \
59 Moof/StringTools.cc \
60 Moof/StringTools.hh \
61 Moof/Texture.cc \
62 Moof/Texture.hh \
63 Moof/Thread.hh \
64 Moof/Timer.cc \
65 Moof/Timer.hh \
66 Moof/Video.cc \
67 Moof/Video.hh \
68 Moof/View.cc \
69 Moof/View.hh \
70 Moof/fastevents.c \
71 Moof/fastevents.h \
72 $(ENDLIST)
73
74 libmoof_a_CPPFLAGS = -I$(top_srcdir)/src/Moof
75
76 EXTRA_DIST = Moof/cml Moof/stlplus
77
78
79 #
80 # yoink
81 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
82
83 bin_PROGRAMS = yoink
84
85 yoink_SOURCES = \
86 Animation.cc \
87 Animation.hh \
88 Character.cc \
89 Character.hh \
90 ErrorHandler.cc \
91 ErrorHandler.hh \
92 GameLayer.cc \
93 GameLayer.hh \
94 GameState.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 TilemapFont.cc \
104 TilemapFont.hh \
105 TitleLayer.cc \
106 TitleLayer.hh \
107 Typesetter.cc \
108 Typesetter.hh \
109 version.c \
110 version.h \
111 $(ENDLIST)
112
113 if WIN32
114 yoink_SOURCES += yoink.rc yoink.ico
115 .rc.o:
116 $(AM_V_GEN) $(WINDRES) -o $@ -i $<
117 endif
118
119 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
120 yoink_LDADD = libmoof.a
121
122
123 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
124
125 run: all
126 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
127
128 debug: all
129 $(YOINK_ENVIRONMENT) ddd ./yoink
130
This page took 0.036482 seconds and 4 git commands to generate.