diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-11 17:45:03 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-11 17:45:03 +0000 |
commit | d2df975828efec9133d97c53b1b0bb4e29f2ce30 (patch) | |
tree | 38858f6e7b5fc94242ba0e7917d01c4d7888eb21 /lib | |
parent | eab64faef4480942a55b64eee89f9c8ba1a5ab0b (diff) | |
download | FreeBSD-src-d2df975828efec9133d97c53b1b0bb4e29f2ce30.zip FreeBSD-src-d2df975828efec9133d97c53b1b0bb4e29f2ce30.tar.gz |
Use the simpler NOMAN rather than NOMAN, NOPIC, NOPROFILE, INTERNALLIB.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/csu/alpha/Makefile | 5 | ||||
-rw-r--r-- | lib/csu/amd64/Makefile | 5 | ||||
-rw-r--r-- | lib/csu/i386-elf/Makefile | 5 | ||||
-rw-r--r-- | lib/csu/ia64/Makefile | 5 | ||||
-rw-r--r-- | lib/csu/powerpc/Makefile | 6 | ||||
-rw-r--r-- | lib/csu/sparc64/Makefile | 5 |
6 files changed, 6 insertions, 25 deletions
diff --git a/lib/csu/alpha/Makefile b/lib/csu/alpha/Makefile index 5528e4e..e4fd425 100644 --- a/lib/csu/alpha/Makefile +++ b/lib/csu/alpha/Makefile @@ -8,10 +8,7 @@ OBJS+= gcrt1.o CFLAGS+= -Wall -Wno-unused \ -I${.CURDIR}/../common \ -I${.CURDIR}/../../libc/include -NOMAN= true -NOPIC= true -NOPROFILE= true -INTERNALLIB= true +NOLIB= true all: ${OBJS} ${SOBJS} diff --git a/lib/csu/amd64/Makefile b/lib/csu/amd64/Makefile index 630872c..ef59b12 100644 --- a/lib/csu/amd64/Makefile +++ b/lib/csu/amd64/Makefile @@ -9,10 +9,7 @@ CFLAGS+= -elf -Wall \ -I${.CURDIR}/../common \ -I${.CURDIR}/../../libc/include LDFLAGS+= -elf -NOMAN= true -NOPIC= true -NOPROFILE= true -INTERNALLIB= true +NOLIB= true all: ${OBJS} ${SOBJS} diff --git a/lib/csu/i386-elf/Makefile b/lib/csu/i386-elf/Makefile index 630872c..ef59b12 100644 --- a/lib/csu/i386-elf/Makefile +++ b/lib/csu/i386-elf/Makefile @@ -9,10 +9,7 @@ CFLAGS+= -elf -Wall \ -I${.CURDIR}/../common \ -I${.CURDIR}/../../libc/include LDFLAGS+= -elf -NOMAN= true -NOPIC= true -NOPROFILE= true -INTERNALLIB= true +NOLIB= true all: ${OBJS} ${SOBJS} diff --git a/lib/csu/ia64/Makefile b/lib/csu/ia64/Makefile index 5528e4e..e4fd425 100644 --- a/lib/csu/ia64/Makefile +++ b/lib/csu/ia64/Makefile @@ -8,10 +8,7 @@ OBJS+= gcrt1.o CFLAGS+= -Wall -Wno-unused \ -I${.CURDIR}/../common \ -I${.CURDIR}/../../libc/include -NOMAN= true -NOPIC= true -NOPROFILE= true -INTERNALLIB= true +NOLIB= true all: ${OBJS} ${SOBJS} diff --git a/lib/csu/powerpc/Makefile b/lib/csu/powerpc/Makefile index 44f1f3a..e4fd425 100644 --- a/lib/csu/powerpc/Makefile +++ b/lib/csu/powerpc/Makefile @@ -8,11 +8,7 @@ OBJS+= gcrt1.o CFLAGS+= -Wall -Wno-unused \ -I${.CURDIR}/../common \ -I${.CURDIR}/../../libc/include -NOMAN= true -NOPIC= true -NOPROFILE= true -INTERNALLIB= true - +NOLIB= true all: ${OBJS} ${SOBJS} diff --git a/lib/csu/sparc64/Makefile b/lib/csu/sparc64/Makefile index 9d4f5c3..9d993c8 100644 --- a/lib/csu/sparc64/Makefile +++ b/lib/csu/sparc64/Makefile @@ -6,10 +6,7 @@ SRCS= crt1.c crti.S crtn.S OBJS= ${SRCS:N*.h:R:S/$/.o/g} OBJS+= gcrt1.o CFLAGS+= -I${.CURDIR}/../common -I${.CURDIR}/../../libc/include -NOMAN= true -NOPIC= true -NOPROFILE= true -INTERNALLIB= true +NOLIB= true all: ${OBJS} ${SOBJS} |