remove stupid flags
authorDaniel Borca <dborca@users.sourceforge.net>
Mon, 23 May 2005 22:02:53 +0000 (22:02 +0000)
committerDaniel Borca <dborca@users.sourceforge.net>
Mon, 23 May 2005 22:02:53 +0000 (22:02 +0000)
Makefile.DJ
Makefile.mgw
progs/samples/Makefile.DJ
progs/samples/Makefile.mgw

index d269fcdbb0e266ca2bb5bb02e55c14e3c7ceb7b3..78ebf43efb9c6fb62e9afa5151e827b425e976f6 100644 (file)
@@ -31,8 +31,6 @@
 #  Available options:
 #
 #    Environment variables:
-#      CPU             optimize for the given processor.
-#                      default = pentium
 #      GLU=[mesa|sgi]  specify GLU directory; can be `sgi' (requires GNU/C++)
 #                      or `mesa'.
 #                      default = mesa
 
 .PHONY : all libgl libglu libglut clean realclean
 
-CPU ?= pentium
-
 GLU ?= mesa
 
 CFLAGS = -Wall -W -pedantic
-CFLAGS += -O2 -ffast-math -mtune=$(CPU)
+CFLAGS += -O2 -ffast-math
 
 export CFLAGS
 
index d544b09398cee7d7fed8e15bf91804ea5f94aedf..70c264a8d86dcad549a4e258d37e6b2d83006913 100644 (file)
@@ -31,8 +31,6 @@
 #  Available options:
 #
 #    Environment variables:
-#      CPU             optimize for the given processor.
-#                      default = pentium
 #      GLIDE           path to Glide3 SDK; used with FX.
 #                      default = $(TOP)/glide3
 #      FX=1            build for 3dfx Glide3. Note that this disables
@@ -57,8 +55,6 @@
 
 .PHONY : all libgl clean realclean
 
-CPU ?= pentium
-
 ifeq ($(ICD),1)
   # when -std=c99 mingw will not define WIN32
   CFLAGS = -Wall -W -Werror
@@ -66,7 +62,7 @@ else
   # I love c89
   CFLAGS = -Wall -W -pedantic
 endif
-CFLAGS += -O2 -ffast-math -mtune=$(CPU)
+CFLAGS += -O2 -ffast-math
 
 export CFLAGS
 
index 557695a66cb5d9dbc9bdb3e9fe2d74e51b5e1673..cda4e059418f767c509722df3715392906f16a01 100644 (file)
@@ -31,8 +31,6 @@
 #  Available options:
 #
 #    Environment variables:
-#      CPU             optimize for the given processor.
-#                      default = pentium
 #      GLIDE           path to Glide3 SDK; used with FX.
 #                      default = $(TOP)/glide3
 #      FX=1            build for 3dfx Glide3. Note that this disables
 .SECONDARY: ../util/readtex.o ../util/showbuffer.o
 
 TOP = ../..
-CPU ?= pentium
 GLIDE ?= $(TOP)/glide3
 
 CC = gcc
 CFLAGS = -Wall -W -pedantic
-CFLAGS += -O2 -ffast-math -mtune=$(CPU)
+CFLAGS += -O2 -ffast-math
 CFLAGS += -I$(TOP)/include -I../util
 CFLAGS += -DGLUT_IMPORT_LIB
 ifeq ($(FX),1)
index 54dbfb706ad8ed1738d914d698e60d503660a10c..11935405783d9798a76045d1631fd23904ba0da3 100644 (file)
@@ -31,8 +31,6 @@
 #  Available options:
 #
 #    Environment variables:
-#      CPU             optimize for the given processor.
-#                      default = pentium
 #
 #    Targets:
 #      <file.exe>      build a specific file
 .SECONDARY: ../util/readtex.o ../util/showbuffer.o
 
 TOP = ../..
-CPU ?= pentium
 
 CC = mingw32-gcc
 CFLAGS = -Wall -W -pedantic
-CFLAGS += -O2 -ffast-math -mtune=$(CPU)
+CFLAGS += -O2 -ffast-math
 CFLAGS += -I$(TOP)/include -I../util
 ifeq ($(FX),1)
 CFLAGS += -DFX