From: Theodore Ts'o Date: Sun, 21 Sep 2014 19:35:21 +0000 (-0400) Subject: MCONFIG: allow developers to override CFLAGS X-Git-Tag: v1.43-WIP-2015-05-18~164 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=ed9881bb6cff5e4f5eeea1c1a1c79de9e31cde61;p=tools%2Fe2fsprogs.git MCONFIG: allow developers to override CFLAGS Move other C compiler flags to ALL_CFLAGS so that CFLAGS only controls the debugging and optimization flags. This allows a developer to build with "make CFLAGS=-g" in order to compile w/o optimization. Signed-off-by: Theodore Ts'o --- diff --git a/MCONFIG.in b/MCONFIG.in index 4751176..29505da 100644 --- a/MCONFIG.in +++ b/MCONFIG.in @@ -73,9 +73,9 @@ pkgconfigdir = $(libdir)/pkgconfig CC = @CC@ BUILD_CC = @BUILD_CC@ -CFLAGS = @CFLAGS@ @DEFS@ $(LOCAL_CFLAGS) +CFLAGS = @CFLAGS@ CPPFLAGS = @INCLUDES@ -ALL_CFLAGS = $(CPPFLAGS) $(CFLAGS) +ALL_CFLAGS = $(CPPFLAGS) $(CFLAGS) @DEFS@ $(LOCAL_CFLAGS) LDFLAGS = @LDFLAGS@ ALL_LDFLAGS = $(LDFLAGS) @LDFLAG_DYNAMIC@ LDFLAGS_STATIC = $(LDFLAGS) @LDFLAG_STATIC@ @@ -197,14 +197,14 @@ WFLAGS= -std=gnu99 -D_XOPEN_SOURCE=600 -D_GNU_SOURCE \ -UENABLE_NLS gcc-wall-new: - ($(MAKE) CFLAGS="@CFLAGS@ $(WFLAGS)" > /dev/null) 2>&1 | sed -f $(top_srcdir)/util/gcc-wall-cleanup + ($(MAKE) CFLAGS="$(ALL_CFLAGS) $(WFLAGS)" > /dev/null) 2>&1 | sed -f $(top_srcdir)/util/gcc-wall-cleanup gcc-wall: $(MAKE) clean > /dev/null $(MAKE) gcc-wall-new static-check: - ($(MAKE) C=1 V=1 CFLAGS="@CFLAGS@ $(WFLAGS)") 2>&1 | sed -f $(top_srcdir)/util/static-analysis-cleanup + ($(MAKE) C=1 V=1 CFLAGS="$(ALL_CFLAGS) $(WFLAGS)") 2>&1 | sed -f $(top_srcdir)/util/static-analysis-cleanup static-check-all: $(MAKE) clean > /dev/null