-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile.mingw
447 lines (387 loc) · 15.1 KB
/
Makefile.mingw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
# Exult makefile for use in Windows with mingw using gcc 3.2 and msys shell
# It may require a little tweaking. (paths)
# Where is Ultima 7 installed
U7PATH=C:/Ultima7
# Only used for snapshots
TOOLSPATH=C:/GimpPlugin
# Base of the exult source
SRC=.
### Modify these paths
SDL_CFLAGS:=-I$(SRC)/sdl/include
ifdef SDL1
LIB_SDL=-lSDL
LIB_SDL_MAIN=-lSDLmain
LIB_SDL_IMAGE=-lSDL_image
SDL_DLL_NAME=SDL.dll
else
LIB_SDL=-lSDL2
LIB_SDL_IMAGE=-lSDL2_image
LIB_SDL_MAIN=-lSDL2main
SDL_DLL_NAME=SDL2.dll
endif
### We want to do our own stdout/stderr redirection, thank you.
#SDL_LIBS:=-L$(SRC)/sdl/lib $(LIB_SDL_MAIN) $(LIB_SDL)
SDL_LIBS:=-L$(SRC)/sdl/lib $(LIB_SDL) -lwinmm
SDL_IMAGE_LIBS=-L$(SRC)/sdl/lib -lmingw32 $(LIB_SDL_IMAGE) $(LIB_SDL) -lpng -ltiff -ljpeg -lwebp -lz
### Uncomment these 2 lines, and comment out the 2 above if you want to build
### Exult as a console Win32 application. This is unsupported and is somewhat
### of a hack.
#SDL_LIBS=-L$(SRC)/sdl/lib $(LIB_SDL) -mconsole
#SDL_CFLAGS=-I$(SRC)/sdl/include -DSDL_main=main
### Zip File support. Comment out if ZLib isn't installed
### Modify paths, if required
ZIP_CFLAGS:=-I$(SRC)/zlib -DHAVE_ZIP_SUPPORT
ifndef STATIC_ZLIB
ZIP_LIBS:=-L$(SRC)/zlib -lz
else
ZIP_LIBS:=-L$(SRC)/zlib -Wl,-Bstatic -lz -Wl,-Bdynamic
endif
### OpenGL mode support
### OpenGL doesn't support SDL2 yet
ifdef SDL1
OPENGL_LIBS:=-lopengl32
OPENGL_OBJS:=shapes/glshape.o
OPENGL_CFLAGS:=-DHAVE_OPENGL
endif
### FLUIDSYNTH libs, for Exult.
# If this doesn't work, insert output of `pkg-config --libs fluidsynth` manually
FLUIDSYNTH_LIBS:=$(shell pkg-config --libs fluidsynth)
### GTK+ libs and includes, for Exult Studio.
# If this doesn't work, insert output of `pkg-config --cflags gtk+-win32-2.0` manually
GTK_INCLUDES:=$(shell pkg-config --cflags gtk+-win32-2.0)
# If this doesn't work, insert output of `pkg-config --libs gtk+-win32-2.0` manually
GTK_LIBS:=$(shell pkg-config --libs gtk+-win32-2.0)
### Glade libs and includes, for Exult Studio.
# If this doesn't work, insert output of 'pkg-config --cflags libglade-2.0' manually
LIBGLADE_INCLUDES:=$(shell pkg-config --cflags libglade-2.0)
# If this doesn't work, insert output of 'pkg-config --libs libglade-2.0' manually
LIBGLADE_LIBS:=$(shell pkg-config --libs libglade-2.0)
### FREETYPE2 libs and includes, for Exult Studio.
# If this doesn't work, insert output of 'pkg-config --cflags freetype2' manually
FREETYPE2_INCLUDES:=$(shell pkg-config --cflags freetype2)
# If this doesn't work, insert output of 'pkg-config --libs freetype2' manually
FREETYPE2_LIBS:=$(shell pkg-config --libs freetype2)
### GIMP libs and includes, for Exult Studio.
# If this doesn't work, insert output of 'pkg-config --cflags gimpui-2.0' manually
GIMP_INCLUDES:=$(shell pkg-config --cflags gimpui-2.0)
# If this doesn't work, insert output of 'pkg-config --libs gimpui-2.0' manually
GIMP_LIBS:=$(shell pkg-config --libs gimpui-2.0)
### Combined Exult Studio includes and libs.
ES_INCLUDES:=$(GTK_INCLUDES) $(LIBGLADE_INCLUDES) $(FREETYPE2_INCLUDES) $(GIMP_INCLUDES)
ES_LIBS:=$(GTK_LIBS) $(LIBGLADE_LIBS) $(FREETYPE2_LIBS) $(ZIP_LIBS) $(OPENGL_LIBS) -liberty -lole32 -lpng -luuid -lws2_32 -mwindows
### Ogg vorbis inclides
OGG_INCLUDES:=$(shell pkg-config --cflags ogg vorbis vorbisfile)
OGG_LIBS:=$(shell pkg-config --libs vorbisfile vorbis ogg)
### MT32Emu stuff
MT32EMU_VERSION_MAJOR:=2
MT32EMU_VERSION_MINOR:=0
MT32EMU_VERSION_PATCH:=0
MT32EMU_VERSION:=\"$(MT32EMU_VERSION_MAJOR).$(MT32EMU_VERSION_MINOR).$(MT32EMU_VERSION_PATCH)\"
MT32EMU_CFLAGS:=-DMT32EMU_EXPORTS_TYPE=0 -DMT32EMU_API_TYPE=0 \
-DMT32EMU_VERSION_MAJOR=$(MT32EMU_VERSION_MAJOR) \
-DMT32EMU_VERSION_MINOR=$(MT32EMU_VERSION_MINOR) \
-DMT32EMU_VERSION_PATCH=$(MT32EMU_VERSION_PATCH) \
-DMT32EMU_VERSION=$(MT32EMU_VERSION)
ifdef DEBUG_SYMBOLS
DEBUG_LEVEL=-ggdb3
endif
ifdef DEBUG
DEF_DEBUG=-DDEBUG
endif
ifdef USECODE_CONTAINER
SHOW_USECODE_CONTAINER=-DSHOW_USECODE_CONTAINER
endif
USING_SJLJ_EXCEPTIONS:=$(findstring --enable-sjlj-exceptions, $(shell gcc -v 2>&1))
ifeq ($(USING_SJLJ_EXCEPTIONS),$())
MTHREADS=
else
WARN:=$(warning This compiler uses SJLJ exceptions; for thread safety, the -mthreads option is being used.)
WARN:=$(warning The compiled binary will depend on MINGWM10.DLL; make sure it is somewhere Exult can find it.)
MTHREADS=-mthreads
endif
EXTRA_OPTIONS=$(DEBUG_LEVEL) $(DEF_DEBUG) $(SHOW_USECODE_CONTAINER)
CPPFLAGS=$(strip -DVERSION=\"$(VERSION)\" -DEXULT_DATADIR=\"data\" \
-DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=8 -DSIZEOF_INTP=4 \
\
-DHAVE_TR1_UNORDERED_MAP -DHAVE_TR1_UNORDERED_SET -DUSE_EXULTSTUDIO -DHAVE_PNG_H \
-DHAVE_FREETYPE2 -DUSE_HQ2X_SCALER -DUSE_HQ3X_SCALER -DUSE_HQ4X_SCALER -DUSE_XBR_SCALER \
-I$(SRC) -I$(SRC)/audio -I$(SRC)/audio/midi_drivers -I$(SRC)/conf -I$(SRC)/data \
-I$(SRC)/files -I$(SRC)/files/zip -I$(SRC)/gamemgr -I$(SRC)/gumps -I$(SRC)/headers \
-I$(SRC)/imagewin -I$(SRC)/objs -I$(SRC)/pathfinder -I$(SRC)/server -I$(SRC)/shapes \
-I$(SRC)/tools -I$(SRC)/usecode -I$(SRC)/usecode/compiler -I$(SRC)/usecode/ucxt/include \
-I$(SRC)/mapedit -I$(SRC)/shapes/shapeinf $(SDL_CFLAGS) \
$(ZIP_CFLAGS) $(OPENGL_CFLAGS) $(MT32EMU_CFLAGS) $(ES_INCLUDES) \
$(EXTRA_OPTIONS))
ifndef OPT_LEVEL
OPT_LEVEL=-O2
endif
ifdef DEBUG_SYMBOLS
OPT_LEVEL=
endif
CXXFLAGS=$(strip $(OPT_LEVEL) -Wno-deprecated -Wno-long-long -mms-bitfields -DHAVE_SNPRINTF -DHAVE_EXT_HASH_MAP -DHAVE_EXT_HASH_SET -DHAVE_SSTREAM -DUSE_FMOPL_MIDI -DUSE_MT32EMU_MIDI -DUSE_FLUIDSYNTH_MIDI)
CXX=g++ -std=c++11
CFLAGS=$(strip $(OPT_LEVEL) -mms-bitfields)
CC=gcc
LDFLAGS=-static-libgcc -static-libstdc++
LIBS=-lmingw32 $(SDL_LIBS) $(ZIP_LIBS) $(OPENGL_LIBS) $(OGG_LIBS) $(FLUIDSYNTH_LIBS) -ldsound -lwinmm -lole32 -luuid -lws2_32 -mwindows $(MTHREADS)
EXEC=Exult.exe
EXEEXT=.exe
LIBEXT=.dll
EXP_FILE=exult_studio.exp
SERVER_OBJS=\
server/objserial.o \
server/servemsg.o \
server/server.o \
server/servewin32.o
ICON_OBJS=exultico.o
ES_SERVER_OBJS=\
server/objserial.o \
server/servemsg.o \
server/servewin32.o
MAPEDIT_OBJS=\
mapedit/bargeedit.o \
mapedit/chunklst.o \
mapedit/combo.o \
mapedit/compile.o \
mapedit/contedit.o \
mapedit/eggedit.o \
mapedit/execbox.o \
mapedit/exult_studio.o \
mapedit/locator.o \
mapedit/maps.o \
mapedit/npcedit.o \
mapedit/npclst.o \
mapedit/objbrowse.o \
mapedit/objedit.o \
mapedit/paledit.o \
mapedit/shapedraw.o \
mapedit/shapeedit.o \
mapedit/shapefile.o \
mapedit/shapegroup.o \
mapedit/shapelst.o \
mapedit/studio.o \
mapedit/ucbrowse.o \
usecode/ucsymtbl.o
ES_FILES_OBJS=\
files/crc.o \
files/Flat.o \
files/Flex.o \
files/IFF.o \
files/listfiles.o \
files/msgfile.o \
files/Table.o \
files/U7file.o \
files/U7fileman.o \
files/U7obj.o \
files/utils.o
ES_GAMEMGR_OBJS=gamemgr/modmgr.o
ES_IMAGEWIN_OBJS=\
imagewin/ibuf8.o \
imagewin/imagebuf.o
ES_SHAPES_OBJS=\
shapes/font.o \
shapes/fontgen.o \
shapes/fontvga.o \
shapes/items.o \
shapes/pngio.o \
shapes/shapeinf.o \
shapes/shapewrite.o \
shapes/shapevga.o \
shapes/u7drag.o \
shapes/vgafile.o \
shapes/shapeinf/ammoinf.o \
shapes/shapeinf/aniinf.o \
shapes/shapeinf/armorinf.o \
shapes/shapeinf/bodyinf.o \
shapes/shapeinf/continf.o \
shapes/shapeinf/effhpinf.o \
shapes/shapeinf/expinf.o \
shapes/shapeinf/frnameinf.o \
shapes/shapeinf/frflags.o \
shapes/shapeinf/frusefun.o \
shapes/shapeinf/monstinf.o \
shapes/shapeinf/npcdollinf.o \
shapes/shapeinf/objdollinf.o \
shapes/shapeinf/sfxinf.o \
shapes/shapeinf/warminf.o \
shapes/shapeinf/weaponinf.o \
$(OPENGL_OBJS)
MISC_OBJS=exultstudioico.o windrag.o
ES_OBJS=$(MAPEDIT_OBJS) $(ES_FILES_OBJS) $(ES_GAMEMGR_OBJS) $(ES_IMAGEWIN_OBJS) $(ES_SHAPES_OBJS) \
$(ES_SERVER_OBJS) $(CONF_OBJS) $(MISC_OBJS) $(ZIP_OBJS)
include Makefile.common
exultico.o: win32/exultico.rc win32/exult.ico
windres --include-dir win32 win32/exultico.rc exultico.o
exconfig_rc.o: win32/exconfig.rc
windres --include-dir win32 win32/exconfig.rc exconfig_rc.o
exconfig.dll: win32/exconfig.def $(FILE_OBJS) $(CONF_OBJS) exconfig_rc.o win32/exconfig.o
dllwrap --def win32/exconfig.def -o $@ $(FILE_OBJS) $(CONF_OBJS) exconfig_rc.o win32/exconfig.o -static -lstdc++
exult_studio$(EXEEXT): $(BG_PAPERDOLL) $(FLEXES) $(ES_OBJS) $(EXP_FILE)
$(CXX) $(LDFLAGS) $(EXP_FILE) -o $@ $(ES_OBJS) $(ES_LIBS)
$(EXP_FILE): $(ES_OBJS)
dlltool --output-exp $@ $(ES_OBJS) -D exult_studio$(EXEEXT)
exultstudioico.o: $(SRC)/win32/exultstudioico.rc $(SRC)/win32/exultstudio.ico
windres --include-dir $(SRC)/win32 $(SRC)/win32/exultstudioico.rc $@
u7shp$(EXEEXT) : mapedit/u7shp.o
$(CXX) $(LDFLAGS) -o $(@) $+ $(GTK_LIBS) $(GIMP_LIBS) -mwindows
install: $(EXEC)
mkdir -p $(U7PATH)
strip $(EXEC) -o $(U7PATH)/$(EXEC)
mkdir -p $(U7PATH)/data
cp data/exult.flx $(U7PATH)/data
cp data/exult_bg.flx $(U7PATH)/data
cp data/exult_si.flx $(U7PATH)/data
cp SDL/lib/$(SDL_DLL_NAME) $(U7PATH)
debug: $(EXEC)
mkdir -p $(U7PATH)
cp $(EXEC) $(U7PATH)/$(EXEC)
mkdir -p $(U7PATH)/data
cp data/exult.flx $(U7PATH)/data
cp data/exult_bg.flx $(U7PATH)/data
cp data/exult_si.flx $(U7PATH)/data
cp SDL/lib/$(SDL_DLL_NAME) $(U7PATH)
dist: $(EXEC) exconfig.dll
mkdir -p $(U7PATH)
mkdir -p $(U7PATH)/Exult
strip $(EXEC) -o $(U7PATH)/Exult/$(EXEC)
mkdir -p $(U7PATH)/Exult/Data
cp data/exult.flx $(U7PATH)/Exult/Data
cp data/exult_bg.flx $(U7PATH)/Exult/Data
cp data/exult_si.flx $(U7PATH)/Exult/Data
cp AUTHORS $(U7PATH)/Exult/AUTHORS.txt
cp ChangeLog $(U7PATH)/Exult/ChangeLog.txt
cp COPYING $(U7PATH)/Exult/COPYING.txt
cp FAQ $(U7PATH)/Exult/FAQ.txt
cp docs/faq.html $(U7PATH)/Exult
mkdir -p $(U7PATH)/Exult/images
cp docs/images/*.gif $(U7PATH)/Exult/images
cp docs/images/docs*.png $(U7PATH)/Exult/images
cp NEWS $(U7PATH)/Exult/NEWS.txt
cp README $(U7PATH)/Exult/README.txt
cp README.1ST $(U7PATH)/Exult/README.1ST.txt
cp docs/ReadMe.html $(U7PATH)/Exult
cp README.win32 $(U7PATH)/Exult/README.win32.txt
cp data/bg/defaultkeys.txt $(U7PATH)/Exult/bgdefaultkeys.txt
cp data/si/defaultkeys.txt $(U7PATH)/Exult/sidefaultkeys.txt
cp SDL/README-SDL.txt $(U7PATH)/Exult
cp SDL/lib/$(SDL_DLL_NAME) $(U7PATH)/Exult
u2d $(U7PATH)/Exult/*.txt
strip exconfig.dll -o $(U7PATH)/exconfig.dll
cp win32/exult_installer.iss $(U7PATH)
toolsinstall: tools
mkdir -p $(U7PATH)
mkdir -p $(U7PATH)/tools
strip expack.exe -o $(U7PATH)/tools/expack.exe
strip cmanip.exe -o $(U7PATH)/tools/cmanip.exe
strip ipack.exe -o $(U7PATH)/tools/ipack.exe
strip mklink.exe -o $(U7PATH)/tools/mklink.exe
strip mockup.exe -o $(U7PATH)/tools/mockup.exe
strip rip.exe -o $(U7PATH)/tools/rip.exe
strip shp2pcx.exe -o $(U7PATH)/tools/shp2pcx.exe
strip smooth.exe -o $(U7PATH)/tools/smooth.exe
strip splitshp.exe -o $(U7PATH)/tools/splitshp.exe
strip textpack.exe -o $(U7PATH)/tools/textpack.exe
strip u7voice2syx.exe -o $(U7PATH)/tools/u7voice2syx.exe
strip ucc.exe -o $(U7PATH)/tools/ucc.exe
strip wuc.exe -o $(U7PATH)/tools/wuc.exe
strip ucxt.exe -o $(U7PATH)/ucxt.exe
mkdir -p $(U7PATH)/data
cp usecode/ucxt/data/events.data $(U7PATH)/data
cp usecode/ucxt/data/flags.data $(U7PATH)/data
cp usecode/ucxt/data/u7opcodes.data $(U7PATH)/data
cp usecode/ucxt/data/u7misc.data $(U7PATH)/data
cp data/bginclude.uc $(U7PATH)/data
cp data/u7bgintrinsics.data $(U7PATH)/data
cp data/u7siintrinsics.data $(U7PATH)/data
cp data/u7sibetaintrinsics.data $(U7PATH)/data
cp libsmooth_randomize$(LIBEXT) $(U7PATH)/tools
cp libsmooth_smooth$(LIBEXT) $(U7PATH)/tools
cp libsmooth_stream$(LIBEXT) $(U7PATH)/tools
cp SDL/lib/$(SDL_DLL_NAME) $(U7PATH)/tools
toolsdist: tools
mkdir -p $(U7PATH)/Tools
mkdir -p $(U7PATH)/Tools/tools
strip expack.exe -o $(U7PATH)/Tools/tools/expack.exe
strip cmanip.exe -o $(U7PATH)/Tools/tools/cmanip.exe
strip ipack.exe -o $(U7PATH)/Tools/tools/ipack.exe
strip mklink.exe -o $(U7PATH)/Tools/tools/mklink.exe
strip mockup.exe -o $(U7PATH)/Tools/tools/mockup.exe
strip rip.exe -o $(U7PATH)/Tools/tools/rip.exe
strip shp2pcx.exe -o $(U7PATH)/Tools/tools/shp2pcx.exe
strip smooth.exe -o $(U7PATH)/Tools/tools/smooth.exe
strip splitshp.exe -o $(U7PATH)/Tools/tools/splitshp.exe
strip textpack.exe -o $(U7PATH)/Tools/tools/textpack.exe
strip u7voice2syx.exe -o $(U7PATH)/Tools/tools/u7voice2syx.exe
strip ucc.exe -o $(U7PATH)/Tools/tools/ucc.exe
strip wuc.exe -o $(U7PATH)/Tools/tools/wuc.exe
strip ucxt.exe -o $(U7PATH)/Tools/ucxt.exe
mkdir -p $(U7PATH)/Tools/data
cp usecode/ucxt/data/events.data $(U7PATH)/Tools/data
cp usecode/ucxt/data/flags.data $(U7PATH)/Tools/data
cp usecode/ucxt/data/u7opcodes.data $(U7PATH)/Tools/data
cp usecode/ucxt/data/u7misc.data $(U7PATH)/Tools/data
cp data/bginclude.uc $(U7PATH)/Tools/data
cp data/u7bgintrinsics.data $(U7PATH)/Tools/data
cp data/u7siintrinsics.data $(U7PATH)/Tools/data
cp data/u7sibetaintrinsics.data $(U7PATH)/Tools/data
cp libsmooth_randomize$(LIBEXT) $(U7PATH)/Tools/tools
cp libsmooth_smooth$(LIBEXT) $(U7PATH)/Tools/tools
cp libsmooth_stream$(LIBEXT) $(U7PATH)/Tools/tools
cp tools/expack.txt $(U7PATH)/Tools/tools
cp tools/intrins1.txt $(U7PATH)/Tools/tools
cp tools/intrins2.txt $(U7PATH)/Tools/tools
cp tools/ipack.txt $(U7PATH)/Tools/tools
cp tools/shp2pcx.txt $(U7PATH)/Tools/tools
cp tools/splitshp.txt $(U7PATH)/Tools/tools
cp tools/textpack.txt $(U7PATH)/Tools/tools
cp tools/u7bgflag.txt $(U7PATH)/Tools/tools
cp tools/u7siflag.txt $(U7PATH)/Tools/tools
cp tools/ucformat.txt $(U7PATH)/Tools/tools
u2d $(U7PATH)/Tools/tools/*.txt
cp SDL/lib/$(SDL_DLL_NAME) $(U7PATH)/Tools/tools
cp win32/exult_tools_installer.iss $(U7PATH)
studioclean:
rm -f $(ES_OBJS) $(EXP_FILE) exult_studio$(EXEEXT) u7shp$(EXEEXT) u7shp.o
studioinstall: exult_studio$(EXEEXT)
mkdir -p $(U7PATH)
strip exult_studio$(EXEEXT) -o $(U7PATH)/exult_studio$(EXEEXT)
mkdir -p $(U7PATH)/data
cp mapedit/exult_studio.glade $(U7PATH)/data
mkdir -p $(U7PATH)/data/estudio
mkdir -p $(U7PATH)/data/estudio/new
cp data/estudio/new/*.dat $(U7PATH)/data/estudio/new
cp data/estudio/new/*.flx $(U7PATH)/data/estudio/new
cp data/estudio/new/*.vga $(U7PATH)/data/estudio/new
cp data/estudio/new/*.shp $(U7PATH)/data/estudio/new
maptools: u7shp$(EXEEXT)
maptoolsinstall: maptools
strip u7shp$(EXEEXT) -o $(HOME)/u7shp$(EXEEXT)
maptoolsdist: maptools
mkdir -p $(TOOLSPATH)
strip u7shp$(EXEEXT) -o $(TOOLSPATH)/u7shp$(EXEEXT)
cp mapedit/gimpwin32.txt $(TOOLSPATH)
u2d $(TOOLSPATH)/*.txt
studiodist: exult_studio$(EXEEXT)
mkdir -p $(U7PATH)
mkdir -p $(U7PATH)/Studio
strip exult_studio$(EXEEXT) -o $(U7PATH)/Studio/exult_studio$(EXEEXT)
mkdir -p $(U7PATH)/Studio/data
cp docs/exult_studio.html $(U7PATH)/Studio
cp docs/exult_studio.txt $(U7PATH)/Studio
mkdir -p $(U7PATH)/Studio/images
cp docs/images/*.gif $(U7PATH)/Studio/images
cp docs/images/studio*.png $(U7PATH)/Studio/images
cp mapedit/exult_studio.glade $(U7PATH)/Studio/data
mkdir -p $(U7PATH)/Studio/data/estudio
mkdir -p $(U7PATH)/Studio/data/estudio/new
cp data/estudio/new/*.dat $(U7PATH)/Studio/data/estudio/new
cp data/estudio/new/*.flx $(U7PATH)/Studio/data/estudio/new
cp data/estudio/new/*.vga $(U7PATH)/Studio/data/estudio/new
cp data/estudio/new/*.shp $(U7PATH)/Studio/data/estudio/new
u2d $(U7PATH)/Studio/*.txt
cp win32/exult_studio_installer.iss $(U7PATH)
allclean: clean toolsclean studioclean
rm -f exconfig.dll exconfig_rc.o win32/exconfig.o
allinstall: install toolsinstall studioinstall
run:
start $(EXEC)