diff options
author | Carl Worth <cworth@cworth.org> | 2009-12-04 15:20:12 -0800 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2009-12-04 15:20:12 -0800 |
commit | 943f415f81207ea00bf1efe8c2c1cbf13a094a56 (patch) | |
tree | 3c1c6e2c975d555e8088885c97297983bd13687b /Makefile | |
parent | c7f971e8c02524ee2435406f0c14791b75c10e20 (diff) |
configure: Support the capturing of CFLAGS and CXXFLAGS at configure time.
These variables can now be set via configure time via environment
variables like so:
CFLAGS=-g ./configure
and subsequent builds will remember these values. The values can
still be overridden at compile time by passing make variables:
make CFLAGS=-O2
The CXXFLAGS variable is optional. If unset at either configure
time or at compile time, it will inherit its value from the
CFLAGS variable. (Though if explicitly set at configure time
it must be explicitly overriden at compile time---just overriding
CFLAGS will not override CXXFLAGS as well.)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -1,6 +1,3 @@ -# Default FLAGS, (can be overridden by user such as "make CFLAGS=-g") -CFLAGS=-O2 - WARN_CXXFLAGS=-Wall -Wextra -Wwrite-strings -Wswitch-enum WARN_CFLAGS=$(WARN_CXXFLAGS) -Wmissing-declarations |