summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-02-16 05:48:08 +0000
committerRoland McGrath <roland@gnu.org>1995-02-16 05:48:08 +0000
commitf54f74174b43a35555c8db47e3a26b6a09791046 (patch)
tree829ab04e5263607afb7ab8bbd9e53d213f0bef84
parent526aa730d5e78518414e891ebdf025422763310c (diff)
(CPPFLAGS, CFLAGS): Set with += so Makefiles can add things.
-rw-r--r--Makeconf5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makeconf b/Makeconf
index 4ea0051f..f67e01bc 100644
--- a/Makeconf
+++ b/Makeconf
@@ -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