deepstone

view Makefile.dos @ 30:a8d42276b5ad

changed the watcom makefile name to something more reasonable
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 22 Sep 2013 18:26:15 +0300
parents Makefile.wac@5fa2983bfe61
children
line source
1 obj = main.obj &
2 wvga.obj dpmi.obj timer.obj mouse.obj &
3 mingl.obj mglrast.obj mglclip.obj mglgen.obj &
4 texture.obj palman.obj scene.obj cvec.obj &
5 fixedp.obj
6 bin = deepston.exe
8 CC = wcc386
9 CFLAGS = -5 -fp5 -otexan -zq -bt=dos -dRAST_FLOAT -dDBG_USE_FLOAT
10 LD = wlink
12 $(bin): $(obj)
13 %write objects.lnk file { $(obj) }
14 $(LD) name $@ @objects $(LDFLAGS)
16 .c: src\
18 .c.obj: .autodepend
19 $(CC) $(CFLAGS) $[*
21 clean: .symbolic
22 del *.obj
23 del $(bin)