]> 4ch.mooo.com Git - 16.git/blob - makefile
what?! OMG!
[16.git] / makefile
1 #
2 #       Higanbana Project makefile
3 #
4 #
5 # Possible optimizations for 8088 class processors
6 #
7 # -oa   Relax alias checking
8 # -ob   Try to generate straight line code
9 # -oe - expand user functions inline (-oe=20 is default, adds lots of code)
10 # -oh   Enable repeated optimizations
11 # -oi   generate certain lib funcs inline
12 # -oi+  Set max inline depth (C++ only, use -oi for C)
13 # -ok   Flowing of register save into function flow graph
14 # -ol   loop optimizations
15 # -ol+  loop optimizations plus unrolling
16 # -or   Reorder for pipelined (486+ procs); not sure if good to use
17 # -os   Favor space over time
18 # -ot   Favor time over space
19 # -ei   Allocate an "int" for all enum types
20 # -zp2  Allow compiler to add padding to structs
21 # -zpw  Use with above; make sure you are warning free!
22 # -0    8088/8086 class code generation
23 # -s    disable stack overflow checking
24
25 # -zk0u translate kanji to unicode... wwww
26 # -zk0  kanji support~
27 # -zkl          current codepage
28
29 # this enables debug output to the serial port.
30 # comment this out on game release.
31 # serial output goes to COM1 at 9600 baud 1 stop bit odd parity.
32 # serial output is plain text ASCII.
33 DEBUGSERIAL=1
34
35 #%.C
36 #192x144
37 #wwww will add these
38 !ifdef __LINUX__
39 REMOVECOMMAND=rm -f
40 COPYCOMMAND=cp -f
41 DIRSEP=/
42 OBJ=obj
43 DUMP=cat
44 WCL=wcl
45 WLIB=wlib
46 UPX=upx
47 !else           #DOS ^^
48 REMOVECOMMAND=*del
49 COPYCOMMAND=*copy /y
50 DIRSEP=\
51 OBJ=obj
52 DUMP=*type
53 WCL=*wcl
54 WLIB=*wlib
55 UPX=*upx
56 !endif
57
58 TARGET_OS = dos
59
60 #EXMMTESTDIR=16$(DIRSEP)exmmtest$(DIRSEP)
61 PDIR=..$(DIRSEP)
62 SRC=src$(DIRSEP)
63 DATADIR=data$(DIRSEP)
64 SPRI=$(DATADIR)$(DIRSEP)spri$(DIRSEP)
65 SRCLIB=$(SRC)lib$(DIRSEP)
66 JSMNLIB=$(SRCLIB)jsmn$(DIRSEP)
67 NYANLIB=$(SRCLIB)nyan$(DIRSEP)
68 #EXMMLIB=$(SRCLIB)exmm$(DIRSEP)
69 MODEXLIB=$(SRCLIB)modex16$(DIRSEP)
70 MODEXLIB_=$(SRCLIB)modex$(DIRSEP)
71 VGMSNDLIB=$(SRCLIB)vgmsnd$(DIRSEP)
72 DOSLIB=$(SRCLIB)doslib$(DIRSEP)
73 DOSLIBDIR=$(SRCLIB)doslib
74 WCPULIB=$(SRCLIB)wcpu$(DIRSEP)
75
76 #
77 # quiet flags
78 #
79 WLIBQ=-q
80 WCLQ=-zq $(WLIBQ)
81 UPXQ=-qqq
82
83 #
84 # compile flags
85 #
86 AFLAGS=-mh -0 -d1
87 SFLAGS=-sg -st -of+ -zu -zdf -zff -zgf -k32768#54096#60000
88 DFLAGS=-DTARGET_MSDOS=16 -DMSDOS=1 $(SFLAGS)
89 ZFLAGS=-zk0 -zc -zp8 -zm $(WCLQ)
90 LFLAGS=-lr -l=dos
91 CFLAGS=$(AFLAGS) $(IFLAGS) -wo -i$(DOSLIB) $(LFLAGS) -fo=.$(OBJ)
92 OFLAGS=-obmilr -oe=24 -out -oh -ei -zp8 -fpi87  -onac -ol+ -ok##x
93 FLAGS=$(CFLAGS) $(OFLAGS) $(DFLAGS) $(ZFLAGS)
94
95 #
96 # objects
97 #
98 VGMSNDOBJ = vgmSnd.$(OBJ) 16_snd.$(OBJ)
99 DOSLIBOBJ = adlib.$(OBJ) 8254.$(OBJ) 8259.$(OBJ) dos.$(OBJ) cpu.$(OBJ)
100 16LIBOBJS = 16_in.$(OBJ) 16_mm.$(OBJ) wcpu.$(OBJ) 16_head.$(OBJ) 16_ca.$(OBJ) 16_dbg.$(OBJ) kitten.$(OBJ) 16_hc.$(OBJ) 16_timer.$(OBJ)
101 GFXLIBOBJS = modex16.$(OBJ) bitmap.$(OBJ) 16text.$(OBJ) bakapee.$(OBJ) scroll16.$(OBJ) 16render.$(OBJ) $(DOSLIBLIBS) 16_vrs.$(OBJ) 16_sprit.$(OBJ)
102 #planar.$(OBJ) 16planar.$(OBJ)
103 DOSLIBLIBS=$(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)cpu$(DIRSEP)dos86h$(DIRSEP)cpu.lib $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)dos$(DIRSEP)dos86h$(DIRSEP)dos.lib $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga$(DIRSEP)dos86h$(DIRSEP)vga.lib
104
105 !ifeq DEBUGSERIAL 1
106 FLAGS += -DDEBUGSERIAL
107 DOSLIBOBJ += 8250.$(OBJ)
108 DOSLIBLIBS += $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)8250$(DIRSEP)dos86h$(DIRSEP)8250.lib
109 !endif
110
111 TESTEXEC = test.exe test0.exe pcxtest.exe pcxtest2.exe palettec.exe maptest.exe fmemtest.exe fonttest.exe fontgfx.exe scroll.exe vgmtest.exe inputest.exe palettel.exe exmmtest.exe vrstest.exe
112 ##planrpcx.exe test2.exe
113 EXEC = 16.exe bakapi.exe tesuto.exe 0.exe $(TESTEXEC)
114
115 all: $(EXEC) joytest.exe
116 #16.lib => $(16LIBOBJS) bug....
117 16LIB=$(16LIBOBJS)
118 #16LIB=16.lib
119
120 !ifeq DEBUGSERIAL 1
121 16LIBOBJS += $(DOSLIBLIBS)
122 !endif
123
124 #
125 #game and bakapi executables
126 #
127 16.exe: 16.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIB) gfx.lib
128         $(WCL) $(FLAGS) $(16FLAGS) 16.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIB) gfx.lib -fm=16.mah
129
130 bakapi.exe: bakapi.$(OBJ) gfx.lib $(DOSLIBLIBS)
131         $(WCL) $(FLAGS) $(BAKAPIFLAGS) bakapi.$(OBJ) gfx.lib $(DOSLIBLIBS) -fm=bakapi.mah
132
133 #
134 #Test Executables!
135 #
136 scroll.exe: scroll.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIB) gfx.lib
137         $(WCL) $(FLAGS) scroll.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIB) gfx.lib -fm=scroll.mah
138 scroll.$(OBJ): $(SRC)scroll.c
139         $(WCL) $(FLAGS) -c $(SRC)scroll.c
140
141 tesuto.exe: tesuto.$(OBJ) $(DOSLIBLIBS) 16_head.$(OBJ) gfx.lib
142         $(WCL) $(FLAGS) $(WCLQ) tesuto.$(OBJ) $(DOSLIBLIBS) 16_head.$(OBJ) gfx.lib
143 tesuto.$(OBJ): $(SRC)tesuto.c
144         $(WCL) $(FLAGS) $(WCLQ) -c $(SRC)tesuto.c
145
146 0.exe: 0.$(OBJ) $(DOSLIBLIBS) gfx.lib $(16LIB)
147         $(WCL) $(FLAGS) $(WCLQ) 0.$(OBJ) $(DOSLIBLIBS) gfx.lib $(16LIB)
148 0.$(OBJ): $(SRC)0.c
149         $(WCL) $(FLAGS) $(WCLQ) -c $(SRC)0.c
150
151 test.exe: test.$(OBJ) gfx.lib $(DOSLIBLIBS) $(16LIB)
152         $(WCL) $(FLAGS) test.$(OBJ) gfx.lib $(DOSLIBLIBS) $(16LIB) -fm=test.mah
153
154 #test2.exe: test2.$(OBJ) $(DOSLIBLIBS) gfx.lib
155 #       $(WCL) $(FLAGS) test2.$(OBJ) $(DOSLIBLIBS) gfx.lib -fm=test2.mah
156
157 test0.exe: test0.$(OBJ)
158         $(WCL) $(FLAGS) test0.$(OBJ) -fm=test0.mah
159
160 fonttest.exe: fonttest.$(OBJ) $(16LIB) gfx.lib
161         $(WCL) $(FLAGS) fonttest.$(OBJ) $(16LIB) gfx.lib -fm=fonttest.mah
162
163 #fonttes0.exe: fonttes0.$(OBJ) $(16LIB)
164 #       $(WCL) $(FLAGS) fonttes0.$(OBJ) $(16LIB)
165
166 fontgfx.exe: fontgfx.$(OBJ) $(16LIB) gfx.lib $(DOSLIBLIBS)
167         $(WCL) $(FLAGS) fontgfx.$(OBJ) $(16LIB) gfx.lib $(DOSLIBLIBS) -fm=fontgfx.mah
168
169 inputest.exe: inputest.$(OBJ) $(16LIB)
170         $(WCL) $(FLAGS) inputest.$(OBJ) $(16LIB) -fm=inputest.mah
171
172 #sountest.exe: sountest.$(OBJ) $(16LIB)
173 #       $(WCL) $(FLAGS) sountest.$(OBJ) $(16LIB)
174
175 pcxtest.exe: pcxtest.$(OBJ) gfx.lib
176         $(WCL) $(FLAGS) pcxtest.$(OBJ) gfx.lib -fm=pcxtest.mah
177
178 vrstest.exe: vrstest.$(OBJ) gfx.lib $(16LIB)
179         $(WCL) $(FLAGS) vrstest.$(OBJ) gfx.lib $(16LIB) -fm=vrstest.mah
180
181 palettec.exe: palettec.$(OBJ) gfx.lib #$(16LIB)
182         $(WCL) $(FLAGS) palettec.$(OBJ) gfx.lib -fm=palettec.mah #$(16LIB)
183
184 palettel.exe: palettel.$(OBJ) gfx.lib #$(16LIB)
185         $(WCL) $(FLAGS) palettel.$(OBJ) gfx.lib -fm=palettel.mah #$(16LIB)
186
187 pcxtest2.exe: pcxtest2.$(OBJ) gfx.lib
188         $(WCL) $(FLAGS) pcxtest2.$(OBJ) gfx.lib -fm=pcxtest2.mah
189
190 ##planrpcx.exe: planrpcx.$(OBJ) gfx.lib
191 ##      $(WCL) $(FLAGS) planrpcx.$(OBJ) gfx.lib -fm=planrpcx.mah
192
193 maptest.exe: maptest.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIB) gfx.lib
194         $(WCL) $(FLAGS) maptest.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIB) gfx.lib -fm=maptest.mah
195
196 fmemtest.exe: fmemtest.$(OBJ) $(16LIB)
197         $(WCL) $(FLAGS) fmemtest.$(OBJ) $(16LIB) -fm=fmemtest.mah
198
199 exmmtest.exe: exmmtest.$(OBJ) 16_in.$(OBJ) 16_mm.$(OBJ) wcpu.$(OBJ) 16_head.$(OBJ) 16_ca.$(OBJ) 16_hc.$(OBJ) kitten.$(OBJ)
200         $(WCL) $(FLAGS) exmmtest.$(OBJ) -fm=exmmtest.mah $(16LIB)
201
202 vgmtest.exe: vgmtest.$(OBJ) vgmsnd.lib $(16LIB)
203         $(WCL) $(FLAGS) vgmtest.$(OBJ) vgmsnd.lib -fm=vgmtest.mah $(16LIB)
204
205
206 #
207 #executable's objects
208 #
209 {$(SRC)}.C.$(OBJ):
210         $(WCL) $(FLAGS) -c $[@
211
212 16.$(OBJ): $(SRC)16.h $(SRC)16.c
213 ####    $(WCL) $(FLAGS) -c $(SRC)16.c
214
215 bakapi.$(OBJ): $(SRC)bakapi.h $(SRC)bakapi.c
216 ####    $(WCL) $(FLAGS) -c $(SRC)bakapi.c
217
218 test.$(OBJ): $(SRC)test.c $(SRCLIB)modex16.h
219 ####    $(WCL) $(FLAGS) -c $(SRC)test.c
220
221 #test2.$(OBJ): $(SRC)test2.c $(SRCLIB)modex16.h
222 #####   $(WCL) $(FLAGS) -c $(SRC)test2.c
223
224 test0.$(OBJ): $(SRC)test0.c
225 ####    $(WCL) $(FLAGS) -c $(SRC)test0.c
226
227 pcxtest.$(OBJ): $(SRC)pcxtest.c $(SRCLIB)modex16.h
228 ####    $(WCL) $(FLAGS) -c $(SRC)pcxtest.c
229
230 vrstest.$(OBJ): $(SRC)vrstest.c $(SRCLIB)modex16.h
231 ####    $(WCL) $(FLAGS) -c $(SRC)vrstest.c
232
233 ##planrpcx.$(OBJ): $(SRC)planrpcx.c $(SRCLIB)modex16.h
234 ######  $(WCL) $(FLAGS) -c $(SRC)planrpcx.c
235
236 pcxtest2.$(OBJ): $(SRC)pcxtest2.c $(SRCLIB)modex16.h
237 ####    $(WCL) $(FLAGS) -c $(SRC)pcxtest2.c
238
239 palettec.$(OBJ): $(SRC)palettec.c
240 ####    $(WCL) $(FLAGS) -c $(SRC)palettec.c
241
242 palettel.$(OBJ): $(SRC)palettel.c
243 ####    $(WCL) $(FLAGS) -c $(SRC)palettel.c
244
245 maptest.$(OBJ): $(SRC)maptest.c $(SRCLIB)modex16.h
246 ####    $(WCL) $(FLAGS) -c $(SRC)maptest.c
247
248 #emmtest.$(OBJ): $(SRC)emmtest.c
249 #####   $(WCL) $(FLAGS) $(MFLAGS) -c $(SRC)emmtest.c
250
251 #emsdump.$(OBJ): $(SRC)emsdump.c
252 #####   $(WCL) $(FLAGS) $(MFLAGS) -c $(SRC)emsdump.c
253
254 fmemtest.$(OBJ): $(SRC)fmemtest.c
255 ####    $(WCL) $(FLAGS) -c $(SRC)fmemtest.c
256
257 fonttest.$(OBJ): $(SRC)fonttest.c
258 ####    $(WCL) $(FLAGS) -c $(SRC)fonttest.c
259
260 #fonttes0.$(OBJ): $(SRC)fonttes0.c
261 #####   $(WCL) $(FLAGS) -c $(SRC)fonttes0.c
262
263 fontgfx.$(OBJ): $(SRC)fontgfx.c
264 ####    $(WCL) $(FLAGS) -c $(SRC)fontgfx.c
265
266 inputest.$(OBJ): $(SRC)inputest.c
267 ####    $(WCL) $(FLAGS) -c $(SRC)inputest.c
268
269 #sountest.$(OBJ): $(SRC)sountest.c
270 #       $(WCL) $(FLAGS) -c $(SRC)sountest.c
271
272 #miditest.$(OBJ): $(SRC)miditest.c
273 #       $(WCL) $(FLAGS) -c $(SRC)miditest.c
274
275 #testemm.$(OBJ): $(SRC)testemm.c
276 #       $(WCL) $(FLAGS) -c $(SRC)testemm.c
277
278 #testemm0.$(OBJ): $(SRC)testemm0.c
279 #       $(WCL) $(FLAGS) -c $(SRC)testemm0.c
280
281 tsthimem.$(OBJ): $(SRC)tsthimem.c
282 ####    $(WCL) $(FLAGS) -c $(SRC)tsthimem.c
283
284 exmmtest.$(OBJ): $(SRC)exmmtest.c
285 ####    $(WCL) $(FLAGS) -c $(SRC)exmmtest.c 16_in.$(OBJ) 16_mm.$(OBJ) wcpu.$(OBJ) 16_head.$(OBJ) 16_ca.$(OBJ) 16_hc.$(OBJ) kitten.$(OBJ)
286
287 vgmtest.$(OBJ): $(SRC)vgmtest.c
288 ####    $(WCL) $(FLAGS) -c $(SRC)vgmtest.c
289         #====$(WCL) -mc -c $(SRC)vgmtest.c
290
291 #
292 #non executable objects libraries
293 #
294 16.lib: $(16LIBOBJS)# doslib.lib vgmsnd.lib
295         $(WLIB) -b $(WLIBQ) 16.lib $(16LIBOBJS)# doslib.lib vgmsnd.lib
296
297 gfx.lib: $(GFXLIBOBJS)
298         $(WLIB) -b $(WLIBQ) gfx.lib $(GFXLIBOBJS)
299
300 vgmsnd.lib: $(VGMSNDOBJ)
301         $(WLIB) -b $(WLIBQ) vgmsnd.lib $(VGMSNDOBJ)
302
303 # extdep:
304 # !include $(DOSLIBDIR)$(DIRSEP)extdep.mak
305
306 # library deps 16-bit huge
307 $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)cpu$(DIRSEP)dos86h$(DIRSEP)cpu.lib:
308         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)cpu && .$(DIRSEP)make.sh
309 $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)dos$(DIRSEP)dos86h$(DIRSEP)dos.lib:
310         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)dos && .$(DIRSEP)make.sh
311 $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga$(DIRSEP)dos86h$(DIRSEP)vgatty.lib:
312         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga && .$(DIRSEP)make.sh
313 $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga$(DIRSEP)dos86h$(DIRSEP)vga.lib:
314         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga && .$(DIRSEP)make.sh
315 $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)8250$(DIRSEP)dos86h$(DIRSEP)8250.lib:
316         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)8250 && .$(DIRSEP)make.sh
317
318 joytest.exe:
319         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)joystick && .$(DIRSEP)make.sh && $(COPYCOMMAND) dos86h$(DIRSEP)test.exe $(PDIR)$(PDIR)$(PDIR)$(PDIR)$(PDIR)joytest.exe
320 #$(DOSLIBLIBS): .symbolic
321 #       @cd $(DOSLIB)
322 #       @.$(DIRSEP)buildall.sh
323 #       @cd $(PDIR)$(PDIR)$(PDIR)
324
325 modex16.$(OBJ): $(SRCLIB)modex16.h $(SRCLIB)modex16.c
326         $(WCL) $(FLAGS) -c $(SRCLIB)modex16.c
327
328 bakapee.$(OBJ): $(SRCLIB)bakapee.h $(SRCLIB)bakapee.c
329         $(WCL) $(FLAGS) -c $(SRCLIB)bakapee.c
330
331 16render.$(OBJ): $(MODEXLIB)16render.h $(MODEXLIB)16render.c
332         $(WCL) $(FLAGS) -c $(MODEXLIB)16render.c
333
334 ##16planar.$(OBJ): $(MODEXLIB)16planar.h $(MODEXLIB)16planar.c
335 ##      $(WCL) $(FLAGS) -c $(MODEXLIB)16planar.c
336
337 16_vrs.$(OBJ): $(SRCLIB)16_vrs.h $(SRCLIB)16_vrs.c $(DOSLIBLIBS)
338         $(WCL) $(FLAGS) -c $(SRCLIB)16_vrs.c $(DOSLIBLIBS)
339 16_sprit.$(OBJ): $(SRCLIB)16_sprit.h $(SRCLIB)16_sprit.c
340         $(WCL) $(FLAGS) -c $(SRCLIB)16_sprit.c
341
342
343 bitmap.$(OBJ): $(SRCLIB)bitmap.h $(SRCLIB)bitmap.c
344         $(WCL) $(FLAGS) -c $(SRCLIB)bitmap.c
345
346 ##planar.$(OBJ): $(SRCLIB)planar.h $(SRCLIB)planar.c
347 ##      $(WCL) $(FLAGS) -c $(SRCLIB)planar.c
348
349 scroll16.$(OBJ): $(SRCLIB)scroll16.h $(SRCLIB)scroll16.c
350         $(WCL) $(FLAGS) -c $(SRCLIB)scroll16.c
351
352 wcpu.$(OBJ): $(WCPULIB)wcpu.h $(WCPULIB)wcpu.c
353         $(WCL) $(FLAGS) -c $(WCPULIB)wcpu.c
354
355 16text.$(OBJ): $(SRCLIB)16text.c
356         $(WCL) $(FLAGS) -c $(SRCLIB)16text.c
357
358 mapread.$(OBJ): $(SRCLIB)mapread.h $(SRCLIB)mapread.c
359         $(WCL) $(FLAGS) -c $(SRCLIB)mapread.c
360
361 16_timer.$(OBJ): $(SRCLIB)16_timer.h $(SRCLIB)16_timer.c
362         $(WCL) $(FLAGS) -c $(SRCLIB)16_timer.c
363
364 16_in.$(OBJ): $(SRCLIB)16_in.h $(SRCLIB)16_in.c
365         $(WCL) $(FLAGS) -c $(SRCLIB)16_in.c
366
367 16_mm.$(OBJ): $(SRCLIB)16_mm.h $(SRCLIB)16_mm.c
368         $(WCL) $(FLAGS) -c $(SRCLIB)16_mm.c
369
370 16_ca.$(OBJ): $(SRCLIB)16_ca.h $(SRCLIB)16_ca.c
371         $(WCL) $(FLAGS) -c $(SRCLIB)16_ca.c
372
373 16_dbg.$(OBJ): $(SRCLIB)16_dbg.h $(SRCLIB)16_dbg.c
374         $(WCL) $(FLAGS) -c $(SRCLIB)16_dbg.c
375
376 midi.$(OBJ): $(SRCLIB)midi.h $(SRCLIB)midi.c
377         $(WCL) $(FLAGS) -c $(SRCLIB)midi.c
378
379 16_head.$(OBJ): $(SRCLIB)16_head.h $(SRCLIB)16_head.c
380         $(WCL) $(FLAGS) -c $(SRCLIB)16_head.c
381
382 16_hc.$(OBJ): $(SRCLIB)16_hc.h $(SRCLIB)16_hc.c
383         $(WCL) $(FLAGS) -c $(SRCLIB)16_hc.c
384
385 16_snd.$(OBJ): $(SRCLIB)16_snd.h $(SRCLIB)16_snd.c
386         $(WCL) $(FLAGS) -c $(SRCLIB)16_snd.c
387         #====$(WCL) -mc -c $(SRCLIB)16_snd.c
388
389 jsmn.$(OBJ): $(JSMNLIB)jsmn.h $(JSMNLIB)jsmn.c
390         $(WCL) $(FLAGS) -c $(JSMNLIB)jsmn.c
391
392 kitten.$(OBJ): $(NYANLIB)kitten.h $(NYANLIB)kitten.c
393         $(WCL) $(FLAGS) -c $(NYANLIB)kitten.c
394
395 vgmSnd.$(OBJ): $(VGMSNDLIB)vgmSnd.h $(VGMSNDLIB)vgmSnd.c
396         $(WCL) $(FLAGS) -c $(VGMSNDLIB)vgmSnd.c
397         #====$(WCL) -c -mc $(VGMSNDLIB)vgmSnd.c
398
399 #memory.$(OBJ): $(EXMMLIB)memory.h $(EXMMLIB)memory.c
400 #       $(WCL) $(FLAGS) $(MFLAGS) -c $(EXMMLIB)memory.c
401
402 c_utils.$(OBJ): $(MODEXLIB_)c_utils.asm
403         $(WCL) -c $(AFLAGS) $(MODEXLIB_)c_utils.asm
404 modex.$(OBJ): $(MODEXLIB_)modex.asm
405         $(WCL) -c $(AFLAGS) $(MODEXLIB_)modex.asm
406
407 #
408 #other~
409 #
410 clean: .symbolic
411         @$(REMOVECOMMAND) $(EXEC)
412         @$(REMOVECOMMAND) *.$(OBJ)
413 !ifdef __LINUX__
414         @rm *.LIB
415 !endif
416         @$(REMOVECOMMAND) 16.lib
417         @$(REMOVECOMMAND) gfx.lib
418         @$(REMOVECOMMAND) vgmsnd.lib
419         @$(WLIB) -n $(WLIBQ) 16.lib
420         @$(WLIB) -n $(WLIBQ) gfx.lib
421         @$(WLIB) -n $(WLIBQ) vgmsnd.lib
422         @$(REMOVECOMMAND) *.16W
423         @$(REMOVECOMMAND) *.16B
424         @$(REMOVECOMMAND) *.OBJ
425         @$(REMOVECOMMAND) *.o
426         @$(REMOVECOMMAND) *.BCO
427         #@$(REMOVECOMMAND) makefi~1
428         #@$(REMOVECOMMAND) makefile~
429         @$(REMOVECOMMAND) __wcl__.LNK
430 #       @$(REMOVECOMMAND) *.smp
431         @$(REMOVECOMMAND) *.SMP
432         @$(REMOVECOMMAND) *.hed
433         @$(REMOVECOMMAND) *.MAH
434         @$(REMOVECOMMAND) *.mah
435         @$(REMOVECOMMAND) *.err
436         #@cd $(DOSLIB)
437         #@./buildall.sh clean
438         #@cd $(PDIR)$(PDIR)$(PDIR)
439 #       @$(COPYCOMMAND) $(SRC)exmmtest.c $(EXMMTESTDIR)$(SRC)
440 #       @$(COPYCOMMAND) $(SRCLIB)16_mm.* $(EXMMTESTDIR)$(SRCLIB)
441 #       @$(COPYCOMMAND) $(SRCLIB)16_head.* $(EXMMTESTDIR)$(SRCLIB)
442 #       @$(COPYCOMMAND) $(SRCLIB)16_ca.* $(EXMMTESTDIR)$(SRCLIB)
443 #       @$(COPYCOMMAND) $(SRCLIB)16_hc.* $(EXMMTESTDIR)$(SRCLIB)
444 #       @$(COPYCOMMAND) $(SRCLIB)types.h $(EXMMTESTDIR)$(SRCLIB)
445 #       @$(COPYCOMMAND) $(NYANLIB)* $(EXMMTESTDIR)$(NYANLIB)
446 #       @echo $(watcom)
447 #       @echo $(INCLUDE)
448
449 backupconfig: .symbolic
450         @$(COPYCOMMAND) .git$(DIRSEP)config git_con.fig
451         @$(COPYCOMMAND) .gitmodules git_modu.les
452         @$(COPYCOMMAND) .gitignore git_igno.re
453
454 comp: .symbolic
455         @$(UPX) -9 $(EXEC)
456
457 comq: .symbolic
458         @$(UPX) -9 $(UPXQ) $(EXEC)
459
460 www: .symbolic
461         @ssh -p 26 sparky4@4ch.mooo.com 'rm -f /var/www/16/*exe*'
462         #@rm -f /var/www/$(EXEC)*
463         @rm -f /var/www/*.exe.zip*
464         #@cp ./$(EXEC) $(DIRSEP)var$(DIRSEP)www$(DIRSEP)
465         @./src/util/z.sh $(EXEC) $(EXEC)
466         @scp -r -P 26 *.exe 4ch.mooo.com:/var/www/16/
467         @scp -r -P 26 x4get.bat 4ch.mooo.com:/var/www/16/
468         @scp -r -P 26 /var/www/*.exe.zip.* 4ch.mooo.com:/var/www/16/
469
470 getwww: .symbolic
471         *x4get.bat $(EXEC)
472
473 vomitchan: .symbolic
474         @$(DUMP) *.err
475
476 ##
477 ##      External library management~ ^^
478 ##
479 #git submodule add <repo>
480 mkdl: .symbolic
481         @cd $(DOSLIB)
482         @./buildall.sh
483         @cd $(PDIR)$(PDIR)$(PDIR)
484
485 uplibs: .symbolic
486         @cd $(JSMNLIB)
487         @git pull
488         @cd $(PDIR)$(PDIR)$(PDIR)
489         @cd $(DOSLIB)
490         @git pull
491         @cd $(PDIR)$(PDIR)$(PDIR)
492
493 reinitlibs: .symbolic
494         @rm -rf $(SRCLIB)doslib
495         @rm -rf $(SRCLIB)jsmn
496         @rm -rf 16/CatacombApocalypse
497         @rm -rf 16/wolf3d
498         @rm -rf 16/keen
499         @wmake -h initlibs
500
501 initlibs: .symbolic
502         @cp git_con.fig .git/config
503         @cp git_modu.les .gitmodules
504         @cp git_igno.re .gitignore
505         @cd $(SRCLIB)
506         @git clone https://github.com/joncampbell123/doslib.git
507         @git clone https://github.com/zserge/jsmn.git
508         @cd $(PDIR)$(PDIR)
509         @cd 16
510         @git clone https://github.com/FlatRockSoft/CatacombApocalypse.git
511         @git clone https://github.com/id-Software/wolf3d.git
512         @git clone https://github.com/keendreams/keen.git
513         @cd $(PDIR)
514         @cp $(SRCLIB)doslib/make-lowercase .
515
516 ##
517 ##      experimental libs
518 ##
519 xlib: .symbolic
520         @cd 16$(DIRSEP)xlib
521         @wmake -h clean
522         @wmake -h all
523         @cd $(PDIR)$(PDIR)
524
525 mx: .symbolic
526         @cd 16$(DIRSEP)xw
527 #       @wmake clean
528         @wmake -h all
529         @cd $(PDIR)$(PDIR)
530
531 mx_: .symbolic
532         @cd 16$(DIRSEP)xw_
533         @wmake -h -f makefile all
534         @cd $(PDIR)$(PDIR)
535
536 vrs: .symbolic
537         @cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga
538         #@make clean
539         @make all
540         @mv pcx2vrl ../../../../../
541         @mv pcxsscut ../../../../../
542         @mv vrl2vrs ../../../../../
543         @mv vrsdump ../../../../../
544         @cd ../../../../../