diff options
author | Roland McGrath <roland@gnu.org> | 1995-02-16 05:48:08 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-02-16 05:48:08 +0000 |
commit | f54f74174b43a35555c8db47e3a26b6a09791046 (patch) | |
tree | 829ab04e5263607afb7ab8bbd9e53d213f0bef84 /Makeconf | |
parent | 526aa730d5e78518414e891ebdf025422763310c (diff) |
(CPPFLAGS, CFLAGS): Set with += so Makefiles can add things.
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -118,8 +118,9 @@ include $(hurdsource)/Maketools # Flags for compilation. # It is important to have this inclusion first; that picks up our # library header files locally rather than from installed copies. -CPPFLAGS := -I$(hurdsource) -CFLAGS := -Wall -Wno-parentheses -g +# Append to any value set by the specific Makefile. +CPPFLAGS += -I$(hurdsource) +CFLAGS += -Wall -Wno-parentheses -g # Standard targets |