deepstone
diff Makefile.wac @ 21:00d84ab1ef26
switched to wacom
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 21 Sep 2013 18:17:55 +0300 |
parents | |
children | 1f26cc6c6204 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/Makefile.wac Sat Sep 21 18:17:55 2013 +0300 1.3 @@ -0,0 +1,21 @@ 1.4 +obj = test.obj wvga.obj dpmi.obj timer.obj mouse.obj & 1.5 + mingl.obj mglrast.obj mglgen.obj & 1.6 + texture.obj palman.obj 1.7 +bin = dos3d.exe 1.8 + 1.9 +CC = wcc386 1.10 +CFLAGS = -5 -fp5 -otexan -zq -bt=dos 1.11 +LD = wlink 1.12 + 1.13 +$(bin): $(obj) 1.14 + %write objects.lnk file { $(obj) } 1.15 + $(LD) name $@ @objects $(LDFLAGS) 1.16 + 1.17 +.c: src\ 1.18 + 1.19 +.c.obj: .autodepend 1.20 + $(CC) $(CFLAGS) $[* 1.21 + 1.22 +clean: .symbolic 1.23 + del *.obj 1.24 + del $(bin)