dos-vga-arena-shooter-game/makefile

20 lines
298 B
Makefile
Raw Normal View History

2024-02-20 13:00:13 +00:00
obj = game.o bmpload.o
all: system/system.lib game.exe .SYMBOLIC
system/system.lib: .SYMBOLIC
cd system
wmake
cd ..
2024-02-15 13:34:50 +00:00
2024-02-16 02:18:15 +00:00
.c.o:
2024-02-20 13:00:13 +00:00
wcc386 -q -bt=dos $<
2024-02-16 02:18:15 +00:00
2024-02-20 17:39:28 +00:00
game.exe: $(obj) system/system.lib
2024-02-20 13:00:13 +00:00
wcl386 -q -bt=dos -l=dos4g $(obj) system/system.lib
clean: .SYMBOLIC
rm *.o
rm system/*.o
rm system/*.lib