aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 646e59d..29bf7ef 100644
--- a/Makefile
+++ b/Makefile
@@ -54,6 +54,7 @@ endif
ifndef CC
CC=gcc
endif
+CC_IS_GCC=$(shell $(CC) --version | grep -q "(GCC)" && echo 1)
ifeq ($(ARCH),powerpc)
ARCH=ppc
@@ -767,7 +768,7 @@ ifeq ($(USE_LOCAL_HEADERS),1)
endif
ifeq ($(GENERATE_DEPENDENCIES),1)
- ifeq ($(CC),gcc)
+ ifeq ($(CC_IS_GCC),1)
DEPEND_CFLAGS=-MMD
endif
endif