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