]> 4ch.mooo.com Git - 16.git/blob - makefile
wwww
[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=o
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 #!ifndef __LINUX__
210 #{$(SRC)}.c.$(OBJ) :
211 {src}.c.$(OBJ) :
212         $(WCL) $(FLAGS) -c $[*
213 #!endif
214
215 16.$(OBJ): $(SRC)16.h $(SRC)16.c
216         $(WCL) $(FLAGS) -c $(SRC)16.c
217
218 bakapi.$(OBJ): $(SRC)bakapi.h $(SRC)bakapi.c
219         $(WCL) $(FLAGS) -c $(SRC)bakapi.c
220
221 test.$(OBJ): $(SRC)test.c $(SRCLIB)modex16.h
222         $(WCL) $(FLAGS) -c $(SRC)test.c
223
224 #test2.$(OBJ): $(SRC)test2.c $(SRCLIB)modex16.h
225 #       $(WCL) $(FLAGS) -c $(SRC)test2.c
226
227 test0.$(OBJ): $(SRC)test0.c
228         $(WCL) $(FLAGS) -c $(SRC)test0.c
229
230 pcxtest.$(OBJ): $(SRC)pcxtest.c $(SRCLIB)modex16.h
231         $(WCL) $(FLAGS) -c $(SRC)pcxtest.c
232
233 vrstest.$(OBJ): $(SRC)vrstest.c $(SRCLIB)modex16.h
234         $(WCL) $(FLAGS) -c $(SRC)vrstest.c
235
236 ##planrpcx.$(OBJ): $(SRC)planrpcx.c $(SRCLIB)modex16.h
237 ##      $(WCL) $(FLAGS) -c $(SRC)planrpcx.c
238
239 pcxtest2.$(OBJ): $(SRC)pcxtest2.c $(SRCLIB)modex16.h
240         $(WCL) $(FLAGS) -c $(SRC)pcxtest2.c
241
242 palettec.$(OBJ): $(SRC)palettec.c
243         $(WCL) $(FLAGS) -c $(SRC)palettec.c
244
245 palettel.$(OBJ): $(SRC)palettel.c
246         $(WCL) $(FLAGS) -c $(SRC)palettel.c
247
248 maptest.$(OBJ): $(SRC)maptest.c $(SRCLIB)modex16.h
249         $(WCL) $(FLAGS) -c $(SRC)maptest.c
250
251 #emmtest.$(OBJ): $(SRC)emmtest.c
252 #       $(WCL) $(FLAGS) $(MFLAGS) -c $(SRC)emmtest.c
253
254 #emsdump.$(OBJ): $(SRC)emsdump.c
255 #       $(WCL) $(FLAGS) $(MFLAGS) -c $(SRC)emsdump.c
256
257 fmemtest.$(OBJ): $(SRC)fmemtest.c
258         $(WCL) $(FLAGS) -c $(SRC)fmemtest.c
259
260 fonttest.$(OBJ): $(SRC)fonttest.c
261         $(WCL) $(FLAGS) -c $(SRC)fonttest.c
262
263 #fonttes0.$(OBJ): $(SRC)fonttes0.c
264 #       $(WCL) $(FLAGS) -c $(SRC)fonttes0.c
265
266 fontgfx.$(OBJ): $(SRC)fontgfx.c
267         $(WCL) $(FLAGS) -c $(SRC)fontgfx.c
268
269 inputest.$(OBJ): $(SRC)inputest.c
270         $(WCL) $(FLAGS) -c $(SRC)inputest.c
271
272 #sountest.$(OBJ): $(SRC)sountest.c
273 #       $(WCL) $(FLAGS) -c $(SRC)sountest.c
274
275 #miditest.$(OBJ): $(SRC)miditest.c
276 #       $(WCL) $(FLAGS) -c $(SRC)miditest.c
277
278 #testemm.$(OBJ): $(SRC)testemm.c
279 #       $(WCL) $(FLAGS) -c $(SRC)testemm.c
280
281 #testemm0.$(OBJ): $(SRC)testemm0.c
282 #       $(WCL) $(FLAGS) -c $(SRC)testemm0.c
283
284 tsthimem.$(OBJ): $(SRC)tsthimem.c
285         $(WCL) $(FLAGS) -c $(SRC)tsthimem.c
286
287 exmmtest.$(OBJ): $(SRC)exmmtest.c
288         $(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)
289
290 vgmtest.$(OBJ): $(SRC)vgmtest.c
291         $(WCL) $(FLAGS) -c $(SRC)vgmtest.c
292         #====$(WCL) -mc -c $(SRC)vgmtest.c
293
294 #
295 #non executable objects libraries
296 #
297 16.lib: $(16LIBOBJS)# doslib.lib vgmsnd.lib
298         $(WLIB) -b $(WLIBQ) 16.lib $(16LIBOBJS)# doslib.lib vgmsnd.lib
299
300 gfx.lib: $(GFXLIBOBJS)
301         $(WLIB) -b $(WLIBQ) gfx.lib $(GFXLIBOBJS)
302
303 vgmsnd.lib: $(VGMSNDOBJ)
304         $(WLIB) -b $(WLIBQ) vgmsnd.lib $(VGMSNDOBJ)
305
306 # extdep:
307 # !include $(DOSLIBDIR)$(DIRSEP)extdep.mak
308
309 # library deps 16-bit huge
310 $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)cpu$(DIRSEP)dos86h$(DIRSEP)cpu.lib:
311         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)cpu && .$(DIRSEP)make.sh
312 $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)dos$(DIRSEP)dos86h$(DIRSEP)dos.lib:
313         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)dos && .$(DIRSEP)make.sh
314 $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga$(DIRSEP)dos86h$(DIRSEP)vgatty.lib:
315         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga && .$(DIRSEP)make.sh
316 $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga$(DIRSEP)dos86h$(DIRSEP)vga.lib:
317         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga && .$(DIRSEP)make.sh
318 $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)8250$(DIRSEP)dos86h$(DIRSEP)8250.lib:
319         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)8250 && .$(DIRSEP)make.sh
320
321 joytest.exe:
322         cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)joystick && .$(DIRSEP)make.sh && $(COPYCOMMAND) dos86h$(DIRSEP)test.exe $(PDIR)$(PDIR)$(PDIR)$(PDIR)$(PDIR)joytest.exe
323 #$(DOSLIBLIBS): .symbolic
324 #       @cd $(DOSLIB)
325 #       @.$(DIRSEP)buildall.sh
326 #       @cd $(PDIR)$(PDIR)$(PDIR)
327
328 modex16.$(OBJ): $(SRCLIB)modex16.h $(SRCLIB)modex16.c
329         $(WCL) $(FLAGS) -c $(SRCLIB)modex16.c
330
331 bakapee.$(OBJ): $(SRCLIB)bakapee.h $(SRCLIB)bakapee.c
332         $(WCL) $(FLAGS) -c $(SRCLIB)bakapee.c
333
334 16render.$(OBJ): $(MODEXLIB)16render.h $(MODEXLIB)16render.c
335         $(WCL) $(FLAGS) -c $(MODEXLIB)16render.c
336
337 ##16planar.$(OBJ): $(MODEXLIB)16planar.h $(MODEXLIB)16planar.c
338 ##      $(WCL) $(FLAGS) -c $(MODEXLIB)16planar.c
339
340 16_vrs.$(OBJ): $(SRCLIB)16_vrs.h $(SRCLIB)16_vrs.c $(DOSLIBLIBS)
341         $(WCL) $(FLAGS) -c $(SRCLIB)16_vrs.c $(DOSLIBLIBS)
342 16_sprit.$(OBJ): $(SRCLIB)16_sprit.h $(SRCLIB)16_sprit.c
343         $(WCL) $(FLAGS) -c $(SRCLIB)16_sprit.c
344
345
346 bitmap.$(OBJ): $(SRCLIB)bitmap.h $(SRCLIB)bitmap.c
347         $(WCL) $(FLAGS) -c $(SRCLIB)bitmap.c
348
349 ##planar.$(OBJ): $(SRCLIB)planar.h $(SRCLIB)planar.c
350 ##      $(WCL) $(FLAGS) -c $(SRCLIB)planar.c
351
352 scroll16.$(OBJ): $(SRCLIB)scroll16.h $(SRCLIB)scroll16.c
353         $(WCL) $(FLAGS) -c $(SRCLIB)scroll16.c
354
355 wcpu.$(OBJ): $(WCPULIB)wcpu.h $(WCPULIB)wcpu.c
356         $(WCL) $(FLAGS) -c $(WCPULIB)wcpu.c
357
358 16text.$(OBJ): $(SRCLIB)16text.c
359         $(WCL) $(FLAGS) -c $(SRCLIB)16text.c
360
361 mapread.$(OBJ): $(SRCLIB)mapread.h $(SRCLIB)mapread.c
362         $(WCL) $(FLAGS) -c $(SRCLIB)mapread.c
363
364 16_timer.$(OBJ): $(SRCLIB)16_timer.h $(SRCLIB)16_timer.c
365         $(WCL) $(FLAGS) -c $(SRCLIB)16_timer.c
366
367 16_in.$(OBJ): $(SRCLIB)16_in.h $(SRCLIB)16_in.c
368         $(WCL) $(FLAGS) -c $(SRCLIB)16_in.c
369
370 16_mm.$(OBJ): $(SRCLIB)16_mm.h $(SRCLIB)16_mm.c
371         $(WCL) $(FLAGS) -c $(SRCLIB)16_mm.c
372
373 16_ca.$(OBJ): $(SRCLIB)16_ca.h $(SRCLIB)16_ca.c
374         $(WCL) $(FLAGS) -c $(SRCLIB)16_ca.c
375
376 16_dbg.$(OBJ): $(SRCLIB)16_dbg.h $(SRCLIB)16_dbg.c
377         $(WCL) $(FLAGS) -c $(SRCLIB)16_dbg.c
378
379 midi.$(OBJ): $(SRCLIB)midi.h $(SRCLIB)midi.c
380         $(WCL) $(FLAGS) -c $(SRCLIB)midi.c
381
382 16_head.$(OBJ): $(SRCLIB)16_head.h $(SRCLIB)16_head.c
383         $(WCL) $(FLAGS) -c $(SRCLIB)16_head.c
384
385 16_hc.$(OBJ): $(SRCLIB)16_hc.h $(SRCLIB)16_hc.c
386         $(WCL) $(FLAGS) -c $(SRCLIB)16_hc.c
387
388 16_snd.$(OBJ): $(SRCLIB)16_snd.h $(SRCLIB)16_snd.c
389         $(WCL) $(FLAGS) -c $(SRCLIB)16_snd.c
390         #====$(WCL) -mc -c $(SRCLIB)16_snd.c
391
392 jsmn.$(OBJ): $(JSMNLIB)jsmn.h $(JSMNLIB)jsmn.c
393         $(WCL) $(FLAGS) -c $(JSMNLIB)jsmn.c
394
395 kitten.$(OBJ): $(NYANLIB)kitten.h $(NYANLIB)kitten.c
396         $(WCL) $(FLAGS) -c $(NYANLIB)kitten.c
397
398 vgmSnd.$(OBJ): $(VGMSNDLIB)vgmSnd.h $(VGMSNDLIB)vgmSnd.c
399         $(WCL) $(FLAGS) -c $(VGMSNDLIB)vgmSnd.c
400         #====$(WCL) -c -mc $(VGMSNDLIB)vgmSnd.c
401
402 #memory.$(OBJ): $(EXMMLIB)memory.h $(EXMMLIB)memory.c
403 #       $(WCL) $(FLAGS) $(MFLAGS) -c $(EXMMLIB)memory.c
404
405 c_utils.$(OBJ): $(MODEXLIB_)c_utils.asm
406         $(WCL) -c $(AFLAGS) $(MODEXLIB_)c_utils.asm
407 modex.$(OBJ): $(MODEXLIB_)modex.asm
408         $(WCL) -c $(AFLAGS) $(MODEXLIB_)modex.asm
409
410 #
411 #other~
412 #
413 clean: .symbolic
414         @$(REMOVECOMMAND) $(EXEC)
415         @$(REMOVECOMMAND) *.$(OBJ)
416         @$(REMOVECOMMAND) 16.lib
417         @$(REMOVECOMMAND) gfx.lib
418         @$(REMOVECOMMAND) vgmsnd.lib
419         @$(REMOVECOMMAND) *.LIB #dos
420         @$(WLIB) -n $(WLIBQ) 16.lib
421         @$(WLIB) -n $(WLIBQ) gfx.lib
422         @$(WLIB) -n $(WLIBQ) vgmsnd.lib
423         @$(REMOVECOMMAND) *.16W
424         @$(REMOVECOMMAND) *.16B
425         @$(REMOVECOMMAND) *.OBJ
426         @$(REMOVECOMMAND) *.$(OBJ)
427         @$(REMOVECOMMAND) *.BCO
428         #@$(REMOVECOMMAND) makefi~1
429         #@$(REMOVECOMMAND) makefile~
430         @$(REMOVECOMMAND) __wcl__.LNK
431 #       @$(REMOVECOMMAND) *.smp
432         @$(REMOVECOMMAND) *.SMP
433         @$(REMOVECOMMAND) *.hed
434         @$(REMOVECOMMAND) *.MAH
435         @$(REMOVECOMMAND) *.mah
436         @$(REMOVECOMMAND) *.err
437         #@cd $(DOSLIB)
438         #@./buildall.sh clean
439         #@cd $(PDIR)$(PDIR)$(PDIR)
440 #       @$(COPYCOMMAND) $(SRC)exmmtest.c $(EXMMTESTDIR)$(SRC)
441 #       @$(COPYCOMMAND) $(SRCLIB)16_mm.* $(EXMMTESTDIR)$(SRCLIB)
442 #       @$(COPYCOMMAND) $(SRCLIB)16_head.* $(EXMMTESTDIR)$(SRCLIB)
443 #       @$(COPYCOMMAND) $(SRCLIB)16_ca.* $(EXMMTESTDIR)$(SRCLIB)
444 #       @$(COPYCOMMAND) $(SRCLIB)16_hc.* $(EXMMTESTDIR)$(SRCLIB)
445 #       @$(COPYCOMMAND) $(SRCLIB)types.h $(EXMMTESTDIR)$(SRCLIB)
446 #       @$(COPYCOMMAND) $(NYANLIB)* $(EXMMTESTDIR)$(NYANLIB)
447 #       @echo $(watcom)
448 #       @echo $(INCLUDE)
449
450 backupconfig: .symbolic
451         @$(COPYCOMMAND) .git$(DIRSEP)config git_con.fig
452         @$(COPYCOMMAND) .gitmodules git_modu.les
453         @$(COPYCOMMAND) .gitignore git_igno.re
454
455 comp: .symbolic
456         @$(UPX) -9 $(EXEC)
457
458 comq: .symbolic
459         @$(UPX) -9 $(UPXQ) $(EXEC)
460
461 www: .symbolic
462         @ssh -p 26 sparky4@4ch.mooo.com 'rm -f /var/www/16/*exe*'
463         #@rm -f /var/www/$(EXEC)*
464         @rm -f /var/www/*.exe.zip*
465         #@cp ./$(EXEC) $(DIRSEP)var$(DIRSEP)www$(DIRSEP)
466         @./src/util/z.sh $(EXEC) $(EXEC)
467         @scp -r -P 26 *.exe 4ch.mooo.com:/var/www/16/
468         @scp -r -P 26 x4get.bat 4ch.mooo.com:/var/www/16/
469         @scp -r -P 26 /var/www/*.exe.zip.* 4ch.mooo.com:/var/www/16/
470
471 getwww: .symbolic
472         *x4get.bat $(EXEC)
473
474 vomitchan: .symbolic
475         @$(DUMP) *.err
476
477 ##
478 ##      External library management~ ^^
479 ##
480 #git submodule add <repo>
481 mkdl: .symbolic
482         @cd $(DOSLIB)
483         @./buildall.sh
484         @cd $(PDIR)$(PDIR)$(PDIR)
485
486 uplibs: .symbolic
487         @cd $(JSMNLIB)
488         @git pull
489         @cd $(PDIR)$(PDIR)$(PDIR)
490         @cd $(DOSLIB)
491         @git pull
492         @cd $(PDIR)$(PDIR)$(PDIR)
493
494 reinitlibs: .symbolic
495         @rm -rf $(SRCLIB)doslib
496         @rm -rf $(SRCLIB)jsmn
497         @rm -rf 16/CatacombApocalypse
498         @rm -rf 16/wolf3d
499         @rm -rf 16/keen
500         @wmake -h initlibs
501
502 initlibs: .symbolic
503         @cp git_con.fig .git/config
504         @cp git_modu.les .gitmodules
505         @cp git_igno.re .gitignore
506         @cd $(SRCLIB)
507         @git clone https://github.com/joncampbell123/doslib.git
508         @git clone https://github.com/zserge/jsmn.git
509         @cd $(PDIR)$(PDIR)
510         @cd 16
511         @git clone https://github.com/FlatRockSoft/CatacombApocalypse.git
512         @git clone https://github.com/id-Software/wolf3d.git
513         @git clone https://github.com/keendreams/keen.git
514         @cd $(PDIR)
515         @cp $(SRCLIB)doslib/make-lowercase .
516
517 ##
518 ##      experimental libs
519 ##
520 xlib: .symbolic
521         @cd 16$(DIRSEP)xlib
522         @wmake -h clean
523         @wmake -h all
524         @cd $(PDIR)$(PDIR)
525
526 mx: .symbolic
527         @cd 16$(DIRSEP)xw
528 #       @wmake clean
529         @wmake -h all
530         @cd $(PDIR)$(PDIR)
531
532 mx_: .symbolic
533         @cd 16$(DIRSEP)xw_
534         @wmake -h -f makefile all
535         @cd $(PDIR)$(PDIR)
536
537 vrs: .symbolic
538         @cd $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga
539         #@make clean
540         @make all
541         @mv pcx2vrl ../../../../../
542         @mv pcxsscut ../../../../../
543         @mv vrl2vrs ../../../../../
544         @mv vrsdump ../../../../../
545         @cd ../../../../../