Fix build flags for non-i686 machines

This commit is contained in:
Jeff Epler 2017-07-14 14:34:44 -05:00
parent 8da45e9eff
commit 8bc098dc1b

View file

@ -2,7 +2,7 @@
# Makefile for exomizer
#
WFLAGS = -Wall -Wstrict-prototypes
CFLAGS = $(WFLAGS) -O3 -ffast-math -mtune=i686 -fomit-frame-pointer -fgcse -pedantic
CFLAGS = $(WFLAGS) -O3 -fomit-frame-pointer -fgcse -pedantic
LDFLAGS = -s
#CFLAGS = -g -mtune=i686 $(WFLAGS)