From 688eb823bc07b080d045c415836ceb6fff02cce0 Mon Sep 17 00:00:00 2001 From: NeilBrown Date: Mon, 24 Jun 2013 16:59:37 +1000 Subject: [PATCH] Make: CXFLAGS should be conditionally assigned. As the Makefile encourages users to set CXFLAGS for extra flags, we should only conditionally set it. That way it can be over-ridden in the environment as well as on the command line. Suggested-by: Bernd Schubert Signed-off-by: NeilBrown --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7e4333c..043bcea 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ KLIBC=/home/src/klibc/klibc-0.77 KLIBC_GCC = gcc -nostdinc -iwithprefix include -I$(KLIBC)/klibc/include -I$(KLIBC)/linux/include -I$(KLIBC)/klibc/arch/i386/include -I$(KLIBC)/klibc/include/bits32 CC = $(CROSS_COMPILE)gcc -CXFLAGS = -ggdb +CXFLAGS ?= -ggdb CWFLAGS = -Wall -Werror -Wstrict-prototypes -Wextra -Wno-unused-parameter ifdef WARN_UNUSED CWFLAGS += -Wp,-D_FORTIFY_SOURCE=2 -O3