diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-05-12 16:21:23 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-05-12 16:21:23 +0000 |
| commit | 5b8f41af394955dcd332ce3dcbdcda5b3a2ad100 (patch) | |
| tree | 09a0dbd76a0174cf5eb88dc0886e02bd9403fa7d | |
| parent | c7b111cba82a6eafca66d37944c7293fb1a11000 (diff) | |
Notes
| -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, 25 insertions, 6 deletions
diff --git a/lib/csu/alpha/Makefile b/lib/csu/alpha/Makefile index e4fd42537d63..5528e4e02d22 100644 --- a/lib/csu/alpha/Makefile +++ b/lib/csu/alpha/Makefile @@ -8,7 +8,10 @@ OBJS+= gcrt1.o CFLAGS+= -Wall -Wno-unused \ -I${.CURDIR}/../common \ -I${.CURDIR}/../../libc/include -NOLIB= true +NOMAN= true +NOPIC= true +NOPROFILE= true +INTERNALLIB= true all: ${OBJS} ${SOBJS} diff --git a/lib/csu/amd64/Makefile b/lib/csu/amd64/Makefile index ef59b121da0f..630872c7cc20 100644 --- a/lib/csu/amd64/Makefile +++ b/lib/csu/amd64/Makefile @@ -9,7 +9,10 @@ CFLAGS+= -elf -Wall \ -I${.CURDIR}/../common \ -I${.CURDIR}/../../libc/include LDFLAGS+= -elf -NOLIB= true +NOMAN= true +NOPIC= true +NOPROFILE= true +INTERNALLIB= true all: ${OBJS} ${SOBJS} diff --git a/lib/csu/i386-elf/Makefile b/lib/csu/i386-elf/Makefile index ef59b121da0f..630872c7cc20 100644 --- a/lib/csu/i386-elf/Makefile +++ b/lib/csu/i386-elf/Makefile @@ -9,7 +9,10 @@ CFLAGS+= -elf -Wall \ -I${.CURDIR}/../common \ -I${.CURDIR}/../../libc/include LDFLAGS+= -elf -NOLIB= true +NOMAN= true +NOPIC= true +NOPROFILE= true +INTERNALLIB= true all: ${OBJS} ${SOBJS} diff --git a/lib/csu/ia64/Makefile b/lib/csu/ia64/Makefile index e4fd42537d63..5528e4e02d22 100644 --- a/lib/csu/ia64/Makefile +++ b/lib/csu/ia64/Makefile @@ -8,7 +8,10 @@ OBJS+= gcrt1.o CFLAGS+= -Wall -Wno-unused \ -I${.CURDIR}/../common \ -I${.CURDIR}/../../libc/include -NOLIB= true +NOMAN= true +NOPIC= true +NOPROFILE= true +INTERNALLIB= true all: ${OBJS} ${SOBJS} diff --git a/lib/csu/powerpc/Makefile b/lib/csu/powerpc/Makefile index e4fd42537d63..44f1f3a0440d 100644 --- a/lib/csu/powerpc/Makefile +++ b/lib/csu/powerpc/Makefile @@ -8,7 +8,11 @@ OBJS+= gcrt1.o CFLAGS+= -Wall -Wno-unused \ -I${.CURDIR}/../common \ -I${.CURDIR}/../../libc/include -NOLIB= true +NOMAN= true +NOPIC= true +NOPROFILE= true +INTERNALLIB= true + all: ${OBJS} ${SOBJS} diff --git a/lib/csu/sparc64/Makefile b/lib/csu/sparc64/Makefile index 9d993c8df82e..9d4f5c3b40e2 100644 --- a/lib/csu/sparc64/Makefile +++ b/lib/csu/sparc64/Makefile @@ -6,7 +6,10 @@ 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 -NOLIB= true +NOMAN= true +NOPIC= true +NOPROFILE= true +INTERNALLIB= true all: ${OBJS} ${SOBJS} |
