dos3d

changeset 20:9c23bfe10745

optimization flags in the makefile
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 21 Sep 2013 16:40:31 +0300
parents c10f62b2bd56
children 00d84ab1ef26
files Makefile.bcc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/Makefile.bcc	Wed Nov 30 07:17:09 2011 +0200
     1.2 +++ b/Makefile.bcc	Sat Sep 21 16:40:31 2013 +0300
     1.3 @@ -7,8 +7,8 @@
     1.4  
     1.5  CC = bcc
     1.6  
     1.7 -# 286 instructions, large memory model
     1.8 -CFLAGS = -1 -f287 -ml -O -G -Isrc
     1.9 +# 386 instructions, x87 fpu code, large memory model, optimize for speed
    1.10 +CFLAGS = -3 -f287 -ml -O2 -G -Isrc
    1.11  
    1.12  $(bin): $(obj)
    1.13  	$(CC) @&&|