Don't build with two -std options.

This commit is contained in:
Jason S. Ninneman 2017-05-29 10:57:47 -07:00 committed by NHOrus
parent e4d145d727
commit 33878607df

View file

@ -7,7 +7,7 @@ GCCVERSIONGTEQ4 := $(shell expr `gcc -dumpversion | cut -f1 -d.` \>= 4)
ifeq ($(UNAME_S),Darwin) ifeq ($(UNAME_S),Darwin)
LIBS= LIBS=
else ifeq "$(GCCVERSIONGTEQ4)" "1" else ifeq "$(GCCVERSIONGTEQ4)" "1"
CC=c99 --std=gnu99 CC=c99
endif endif
OBJS=main.o init.o actions1.o actions2.o score.o misc.o OBJS=main.o init.o actions1.o actions2.o score.o misc.o