From 1dd785e1d2b1008196e7a80388bfa97c435c5ab2 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sat, 2 Jun 2007 15:26:30 +0000 Subject: [PATCH] * Assumptions are already made that the compiler used is GCC, so it seems silly to make per-platform exceptions in order to make the IS_GCC test work. Instead just rely on $(CC) being set by the system (i.e. make) and it being GCC. If this causes problems on any platforms please discuss it on the mailing list or IRC --- Makefile | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/Makefile b/Makefile index 057e69da..bd6bea70 100644 --- a/Makefile +++ b/Makefile @@ -51,18 +51,6 @@ ifndef ARCH ARCH=$(COMPILE_ARCH) endif -ifndef CC - CC=gcc -endif - -ifeq ($(PLATFORM),sunos) - # GNU make on SunOS defines CC as 'cc'. 'grep -q' is not an option on SunOS. - CC=gcc - CC_IS_GCC=1 -else - CC_IS_GCC=$(shell $(CC) --version | grep -q "(GCC)" && echo 1) -endif - ifeq ($(ARCH),powerpc) ARCH=ppc endif @@ -775,9 +763,7 @@ ifeq ($(USE_LOCAL_HEADERS),1) endif ifeq ($(GENERATE_DEPENDENCIES),1) - ifeq ($(CC_IS_GCC),1) - DEPEND_CFLAGS=-MMD - endif + DEPEND_CFLAGS=-MMD endif ifeq ($(USE_SVN),1)