From cdf894ce17f72d23be5e729a5d6877b7124c4654 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Tue, 24 Jan 2017 17:30:36 +0100 Subject: [PATCH] makefile-engine: use $(CC) and $(CXX) instead of gcc and g++. * so that one can build with clang. --- data/develop/makefile-engine | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/develop/makefile-engine b/data/develop/makefile-engine index 504d9c57c5..ce2aa91906 100644 --- a/data/develop/makefile-engine +++ b/data/develop/makefile-engine @@ -35,8 +35,8 @@ endif MIMESET := mimeset XRES := xres RESCOMP := rc -CC := gcc -C++ := g++ +CC := $(CC) +C++ := $(CXX) # Set up CFLAGS. ifeq ($(strip $(TYPE)), DRIVER) @@ -79,7 +79,7 @@ endif # Set up the linker & linker flags. ifeq ($(origin LD), default) - LD := gcc + LD := $(CC) endif LDFLAGS += $(DEBUG)