deepstone

changeset 29:5fa2983bfe61

watcom makefile changes
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 22 Sep 2013 18:09:44 +0300
parents 11d14f688485
children a8d42276b5ad
files Makefile.wac
diffstat 1 files changed, 6 insertions(+), 4 deletions(-) [+]
line diff
     1.1 --- a/Makefile.wac	Sun Sep 22 06:38:08 2013 +0300
     1.2 +++ b/Makefile.wac	Sun Sep 22 18:09:44 2013 +0300
     1.3 @@ -1,10 +1,12 @@
     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 +obj = main.obj &
     1.8 +	  wvga.obj dpmi.obj timer.obj mouse.obj &
     1.9 +	  mingl.obj mglrast.obj mglclip.obj mglgen.obj &
    1.10 +	  texture.obj palman.obj scene.obj cvec.obj &
    1.11 +	  fixedp.obj
    1.12  bin = deepston.exe
    1.13  
    1.14  CC = wcc386
    1.15 -CFLAGS = -5 -fp5 -otexan -zq -bt=dos
    1.16 +CFLAGS = -5 -fp5 -otexan -zq -bt=dos -dRAST_FLOAT -dDBG_USE_FLOAT
    1.17  LD = wlink
    1.18  
    1.19  $(bin): $(obj)