# HG changeset patch # User John Tsiombikas # Date 1379863575 -10800 # Node ID a8d42276b5adcc1ce04f26d90a31b087d51f1c84 # Parent 5fa2983bfe61b93ba5ef8fc2ffb64f66c3e99a73 changed the watcom makefile name to something more reasonable diff -r 5fa2983bfe61 -r a8d42276b5ad Makefile.dos --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile.dos Sun Sep 22 18:26:15 2013 +0300 @@ -0,0 +1,23 @@ +obj = main.obj & + wvga.obj dpmi.obj timer.obj mouse.obj & + mingl.obj mglrast.obj mglclip.obj mglgen.obj & + texture.obj palman.obj scene.obj cvec.obj & + fixedp.obj +bin = deepston.exe + +CC = wcc386 +CFLAGS = -5 -fp5 -otexan -zq -bt=dos -dRAST_FLOAT -dDBG_USE_FLOAT +LD = wlink + +$(bin): $(obj) + %write objects.lnk file { $(obj) } + $(LD) name $@ @objects $(LDFLAGS) + +.c: src\ + +.c.obj: .autodepend + $(CC) $(CFLAGS) $[* + +clean: .symbolic + del *.obj + del $(bin) diff -r 5fa2983bfe61 -r a8d42276b5ad Makefile.wac --- a/Makefile.wac Sun Sep 22 18:09:44 2013 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -obj = main.obj & - wvga.obj dpmi.obj timer.obj mouse.obj & - mingl.obj mglrast.obj mglclip.obj mglgen.obj & - texture.obj palman.obj scene.obj cvec.obj & - fixedp.obj -bin = deepston.exe - -CC = wcc386 -CFLAGS = -5 -fp5 -otexan -zq -bt=dos -dRAST_FLOAT -dDBG_USE_FLOAT -LD = wlink - -$(bin): $(obj) - %write objects.lnk file { $(obj) } - $(LD) name $@ @objects $(LDFLAGS) - -.c: src\ - -.c.obj: .autodepend - $(CC) $(CFLAGS) $[* - -clean: .symbolic - del *.obj - del $(bin)