]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
constructors should be explicit
[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_CPPFLAGS = -I$(top_srcdir)/src/Moof
15
16 libmoof_a_SOURCES = \
17 Moof/Aabb.cc \
18 Moof/Aabb.hh \
19 Moof/Backend.cc \
20 Moof/Backend.hh \
21 Moof/Camera.cc \
22 Moof/Camera.hh \
23 Moof/Contact.hh \
24 Moof/ConvertUTF.c \
25 Moof/ConvertUTF.h \
26 Moof/Cullable.hh \
27 Moof/Dispatch.cc \
28 Moof/Dispatch.hh \
29 Moof/Drawable.hh \
30 Moof/Entity.hh \
31 Moof/Error.hh \
32 Moof/Event.hh \
33 Moof/Frustum.cc \
34 Moof/Frustum.hh \
35 Moof/HashTools.cc \
36 Moof/HashTools.hh \
37 Moof/Image.cc \
38 Moof/Image.hh \
39 Moof/Interpolator.hh \
40 Moof/Line.hh \
41 Moof/Log.cc \
42 Moof/Log.hh \
43 Moof/Manager.hh \
44 Moof/Math.hh \
45 Moof/ModalDialog.hh \
46 Moof/Network.hh \
47 Moof/Octree.hh \
48 Moof/OpenGL.hh \
49 Moof/Packet.cc \
50 Moof/Packet.hh \
51 Moof/Plane.cc \
52 Moof/Plane.hh \
53 Moof/Ray.hh \
54 Moof/Resource.cc \
55 Moof/Resource.hh \
56 Moof/RigidBody.hh \
57 Moof/Script.hh \
58 Moof/Service.cc \
59 Moof/Service.hh \
60 Moof/Settings.cc \
61 Moof/Settings.hh \
62 Moof/Shape.hh \
63 Moof/Socket.hh \
64 Moof/Sound.cc \
65 Moof/Sound.hh \
66 Moof/Sphere.hh \
67 Moof/StringTools.cc \
68 Moof/StringTools.hh \
69 Moof/Texture.cc \
70 Moof/Texture.hh \
71 Moof/Thread.hh \
72 Moof/Timer.cc \
73 Moof/Timer.hh \
74 Moof/Video.cc \
75 Moof/Video.hh \
76 Moof/View.cc \
77 Moof/View.hh \
78 Moof/fastevents.c \
79 Moof/fastevents.h \
80 $(ENDLIST)
81
82 EXTRA_DIST = Moof/cml Moof/stlplus
83
84
85 #
86 # yoink
87 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
88
89 bin_PROGRAMS = yoink
90
91 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
92 yoink_LDADD = libmoof.a
93
94 yoink_SOURCES = \
95 Animation.cc \
96 Animation.hh \
97 Character.cc \
98 Character.hh \
99 ErrorHandler.cc \
100 ErrorHandler.hh \
101 GameLayer.cc \
102 GameLayer.hh \
103 GameState.hh \
104 Heroine.cc \
105 Heroine.hh \
106 Hud.cc \
107 Hud.hh \
108 Main.cc \
109 Main.hh \
110 Scene.cc \
111 Scene.hh \
112 TilemapFont.cc \
113 TilemapFont.hh \
114 TitleLayer.cc \
115 TitleLayer.hh \
116 Typesetter.cc \
117 Typesetter.hh \
118 version.c \
119 version.h \
120 $(ENDLIST)
121
122 if WIN32
123 yoink_SOURCES += yoink.rc
124 .rc.o:
125 $(WINDRES) -o $@ -i $<
126 else
127 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
128 run: all
129 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
130
131 debug: all
132 $(YOINK_ENVIRONMENT) gdb ./yoink
133 endif
134
135 if LINK_SH
136 yoink$(EXEEXT): $(yoink_OBJECTS) $(yoink_DEPENDENCIES)
137 @rm -f yoink$(EXEEXT)
138 @LINK="$(CXXLINK) $(yoink_OBJECTS) $(yoink_LDADD) $(LIBS)"\
139 sh $(top_srcdir)/link.sh
140
141 clean-local:
142 rm -f .link/*
143 endif
144
This page took 0.035567 seconds and 4 git commands to generate.