diff options
author | bde <bde@FreeBSD.org> | 1997-06-29 21:36:33 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-06-29 21:36:33 +0000 |
commit | e610502b1eca90e603b582f53ff78fd653d83f44 (patch) | |
tree | 38f870ae73fbfff9bdc8369f36e9246d82add101 /gnu/usr.bin | |
parent | d7b4f23ff274bbc56ef4745c5b795a20dc06c874 (diff) | |
download | FreeBSD-src-e610502b1eca90e603b582f53ff78fd653d83f44.zip FreeBSD-src-e610502b1eca90e603b582f53ff78fd653d83f44.tar.gz |
Configure static linkage in the normal way (default to -static using
NOSHARED?= yes).
Split long lines.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/ld/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/usr.bin/ld/Makefile b/gnu/usr.bin/ld/Makefile index 57fdddc..1c60e2b 100644 --- a/gnu/usr.bin/ld/Makefile +++ b/gnu/usr.bin/ld/Makefile @@ -1,10 +1,12 @@ -# $Id$ +# $Id: Makefile,v 1.21 1997/02/22 15:46:17 peter Exp $ # PROG= ld -SRCS= ld.c symbol.c lib.c shlib.c warnings.c support.c rrs.c xbits.c md.c cplus-dem.c -CFLAGS += -I$(.CURDIR) -I$(.CURDIR)/$(MACHINE) -I$(GCCDIR) -DIN_GCC -DDEMANGLE_CPLUSPLUS -LDFLAGS+= -Xlinker -Bstatic +SRCS= ld.c symbol.c lib.c shlib.c warnings.c support.c rrs.c xbits.c md.c \ + cplus-dem.c +CFLAGS+= -I$(.CURDIR) -I$(.CURDIR)/$(MACHINE) \ + -I$(GCCDIR) -DIN_GCC -DDEMANGLE_CPLUSPLUS +NOSHARED?= yes GCCDIR= ${.CURDIR}/../../../contrib/gcc |