]> Dogcows Code - chaz/yoink/blob - src/Makefile.am
now can create win32 portable packages
[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.hh \
16 Moof/Backend.cc \
17 Moof/Backend.hh \
18 Moof/Camera.cc \
19 Moof/Camera.hh \
20 Moof/Contact.hh \
21 Moof/ConvertUTF.c \
22 Moof/ConvertUTF.h \
23 Moof/Cullable.hh \
24 Moof/Dispatch.cc \
25 Moof/Dispatch.hh \
26 Moof/Drawable.hh \
27 Moof/Entity.hh \
28 Moof/Error.hh \
29 Moof/Event.hh \
30 Moof/Frustum.cc \
31 Moof/Frustum.hh \
32 Moof/HashTools.cc \
33 Moof/HashTools.hh \
34 Moof/Image.cc \
35 Moof/Image.hh \
36 Moof/Interpolator.hh \
37 Moof/Line.hh \
38 Moof/Log.cc \
39 Moof/Log.hh \
40 Moof/Manager.hh \
41 Moof/Math.hh \
42 Moof/ModalDialog.hh \
43 Moof/Octree.hh \
44 Moof/OpenGL.hh \
45 Moof/Plane.cc \
46 Moof/Plane.hh \
47 Moof/Ray.hh \
48 Moof/Resource.cc \
49 Moof/Resource.hh \
50 Moof/RigidBody.hh \
51 Moof/Script.hh \
52 Moof/Settings.cc \
53 Moof/Settings.hh \
54 Moof/Shape.hh \
55 Moof/Sound.cc \
56 Moof/Sound.hh \
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/Video.cc \
66 Moof/Video.hh \
67 Moof/View.cc \
68 Moof/View.hh \
69 Moof/fastevents.c \
70 Moof/fastevents.h \
71 $(ENDLIST)
72
73 libmoof_a_CPPFLAGS = -I$(top_srcdir)/src/Moof
74
75 EXTRA_DIST = Moof/cml Moof/stlplus
76
77
78 #
79 # yoink
80 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
81
82 bin_PROGRAMS = yoink
83
84 yoink_SOURCES = \
85 Animation.cc \
86 Animation.hh \
87 Character.cc \
88 Character.hh \
89 ErrorHandler.cc \
90 ErrorHandler.hh \
91 GameLayer.cc \
92 GameLayer.hh \
93 GameState.hh \
94 Heroine.cc \
95 Heroine.hh \
96 Hud.cc \
97 Hud.hh \
98 Main.cc \
99 Main.hh \
100 Scene.cc \
101 Scene.hh \
102 TilemapFont.cc \
103 TilemapFont.hh \
104 TitleLayer.cc \
105 TitleLayer.hh \
106 Typesetter.cc \
107 Typesetter.hh \
108 version.c \
109 version.h \
110 $(ENDLIST)
111
112 if WIN32
113 yoink_SOURCES += yoink.rc yoink.ico
114 .rc.o:
115 $(AM_V_GEN) $(WINDRES) -o $@ -i $<
116 endif
117
118 yoink_CPPFLAGS = -I$(top_srcdir)/src/Moof
119 yoink_LDADD = libmoof.a
120
121
122 YOINK_ENVIRONMENT = YOINK_DATADIR="$(top_srcdir)/data"
123
124 run: all
125 $(YOINK_ENVIRONMENT) ./yoink $(YOINK_OPTS)
126
127 debug: all
128 $(YOINK_ENVIRONMENT) ddd ./yoink
129
This page took 0.042488 seconds and 5 git commands to generate.