deepstone

view 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 source
1 obj = test.obj wvga.obj dpmi.obj timer.obj mouse.obj &
2 mingl.obj mglrast.obj mglgen.obj &
3 texture.obj palman.obj
4 bin = dos3d.exe
6 CC = wcc386
7 CFLAGS = -5 -fp5 -otexan -zq -bt=dos
8 LD = wlink
10 $(bin): $(obj)
11 %write objects.lnk file { $(obj) }
12 $(LD) name $@ @objects $(LDFLAGS)
14 .c: src\
16 .c.obj: .autodepend
17 $(CC) $(CFLAGS) $[*
19 clean: .symbolic
20 del *.obj
21 del $(bin)