# HG changeset patch # User John Tsiombikas # Date 1379770831 -10800 # Node ID 9c23bfe10745fdcf5666c3064ef10c9231e03b03 # Parent c10f62b2bd566c6e371f5477f35b10fd1a44956c optimization flags in the makefile diff -r c10f62b2bd56 -r 9c23bfe10745 Makefile.bcc --- a/Makefile.bcc Wed Nov 30 07:17:09 2011 +0200 +++ b/Makefile.bcc Sat Sep 21 16:40:31 2013 +0300 @@ -7,8 +7,8 @@ CC = bcc -# 286 instructions, large memory model -CFLAGS = -1 -f287 -ml -O -G -Isrc +# 386 instructions, x87 fpu code, large memory model, optimize for speed +CFLAGS = -3 -f287 -ml -O2 -G -Isrc $(bin): $(obj) $(CC) @&&|