From: Shamus Hammons Date: Tue, 1 Jun 2004 19:09:38 +0000 (+0000) Subject: Removed some objs, added math optimization X-Git-Tag: 1.0.7~34 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a13130d28f50959bac485d12aa464b5040577ce1;p=virtualjaguar Removed some objs, added math optimization --- diff --git a/Makefile b/Makefile index 22810e0..7d8d132 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ TARGET = vj$(EXESUFFIX) # Note that we use optimization level 2 instead of 3--3 doesn't seem to gain much over 2 CFLAGS = -Wall -Wno-switch -Wno-non-virtual-dtor -O2 -D$(SYSTYPE) \ - -fomit-frame-pointer `sdl-config --cflags` + -ffast-math -fomit-frame-pointer `sdl-config --cflags` # -fomit-frame-pointer `sdl-config --cflags` -g # -fomit-frame-pointer `sdl-config --cflags` -DLOG_UNMAPPED_MEMORY_ACCESSES @@ -27,8 +27,6 @@ THECC = $(CC) $(CFLAGS) $(INCS) OBJS = \ obj/anajoy.o \ obj/blitter.o \ - obj/cdbios.o \ - obj/cdi.o \ obj/cdrom.o \ obj/cdintf.o \ obj/clock.o \ @@ -56,6 +54,8 @@ OBJS = \ obj/video.o \ obj/vj.o \ $(ICON) +# obj/cdbios.o +# obj/cdi.o all: obj $(TARGET)