diff options
author | bde <bde@FreeBSD.org> | 2004-02-26 07:08:33 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2004-02-26 07:08:33 +0000 |
commit | ff55724eab275c5ceb3abd2ce5b490bca633b10e (patch) | |
tree | bdf509a1c55ac5553c397aee5fe4b23b64a0bd46 /gnu | |
parent | aa2ff441f57e24f530f2f5196457cb11bf9d44c9 (diff) | |
download | FreeBSD-src-ff55724eab275c5ceb3abd2ce5b490bca633b10e.zip FreeBSD-src-ff55724eab275c5ceb3abd2ce5b490bca633b10e.tar.gz |
Backed out the residue of rev.1.13 (bogus addition of -static to CFLAGS).
Makeworld will add -static in the correct place if needed and possible.
Self-hosted builds can just use the system default.
Fixed some nearby style bugs (code unrelated to its comment, and comment
formatting).
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index de43e1d..5d9535a 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -7,16 +7,19 @@ # SRCS to get dependencies. # +# # ../Makefile.inc will put an absolute path to our objdir in CFLAGS. # Prevent mkdep from using it, so that we don't have to give rules for # aliases of generated headers. - -CFLAGS+= -I. -static -DGENERATOR_FILE +# +CFLAGS+= -I. .include "../Makefile.inc" .PATH: ${GCCDIR} +CFLAGS+= -DGENERATOR_FILE + #----------------------------------------------------------------------- # insn-* gunk |