commit a016e21abcff0d554789b4f11587bad05465b051
Author: Thomas BERNARD <miniupnp@free.fr>
Date: Mon May 14 22:47:36 2018 +0200
Default to CC=gcc but allow to define other values
> CC=clang make (environment)
> make CC=gcc-5 (command-line)
diff --git a/src/Makefile b/src/Makefile
index 022200f..afdd108 100644
@@ -64,6 +64,11 @@ TAR = tar
# Note : --transform option was added in GNU tar version 1.15.91
TARTRANSFORM = --strip=1 --transform 's,^,grafx2/,g'
+# default to gcc compiler
+ifeq (default,$(origin CC))
# There is no uname under windows, but we can guess we are there with the COMSPEC env.var
@@ -75,7 +80,6 @@ ifdef COMSPEC
COPT = -W -Wall -Wdeclaration-after-statement -O$(OPTIM) -g -ggdb `sdl-config --cflags` $(TTFCOPT) $(JOYCOPT) $(LUACOPT)
LOPT = `sdl-config --libs` -lSDL_image $(TTFLOPT) -lpng -lz $(LUALOPT)
COPT = -Wall -gstabs $(shell sdl-config --cflags) $(TTFCOPT)
LOPT = $(shell sdl-config --libs) -lSDL_image -lpng -ljpeg -lz $(TTFLOPT) -lft2
@@ -198,7 +201,6 @@ endif
COPT += -DENABLE_FILENAMES_ICONV
# Use gcc for compiling. Use ncc to build a callgraph and analyze the code.
#CC = nccgen -ncgcc -ncld -ncfabs
@@ -215,7 +217,6 @@ endif
COPT = -Wall -g $(shell sdl-config --cflags) $(TTFCOPT)
LOPT = -lSDL_image $(shell sdl-config --libs) -lpng -ljpeg -lz $(TTFLOPT) -lfreetype2shared
STRIP = strip --strip-unneeded --remove-section .comment
@@ -231,7 +232,6 @@ endif
COPT = -Wall -gstabs $(shell sdl-config --cflags) $(TTFCOPT)
LOPT = -lSDL_image $(shell sdl-config --libs) -lpng -ljpeg -lz $(TTFLOPT)