diff options
| author | John Birrell <jb@FreeBSD.org> | 1999-11-06 21:59:29 +0000 |
|---|---|---|
| committer | John Birrell <jb@FreeBSD.org> | 1999-11-06 21:59:29 +0000 |
| commit | 1009ce833e3b47cb11f48347a351aa7871b79396 (patch) | |
| tree | 2713ddd123c5cbca5192eca0e23665fbb72906cc /gnu | |
| parent | e60947e1ada361e362f98277414873f682e72e4b (diff) | |
Notes
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/binutils/as/alpha-freebsd/Makefile | 6 | ||||
| -rw-r--r-- | gnu/usr.bin/binutils/as/as_alpha/Makefile | 6 | ||||
| -rw-r--r-- | gnu/usr.bin/binutils/as/as_i386/Makefile | 6 | ||||
| -rw-r--r-- | gnu/usr.bin/binutils/as/i386-freebsd/Makefile | 6 | ||||
| -rw-r--r-- | gnu/usr.bin/binutils/as/mips-freebsd/Makefile | 6 |
5 files changed, 15 insertions, 15 deletions
diff --git a/gnu/usr.bin/binutils/as/alpha-freebsd/Makefile b/gnu/usr.bin/binutils/as/alpha-freebsd/Makefile index 5d694f23c37b2..68740645a25f9 100644 --- a/gnu/usr.bin/binutils/as/alpha-freebsd/Makefile +++ b/gnu/usr.bin/binutils/as/alpha-freebsd/Makefile @@ -4,10 +4,10 @@ .include "${.CURDIR}/../Makefile.inc0" -.if ${MACHINE_ARCH} == "alpha" PROG= as -.else -PROG= as_alpha +.if ${MACHINE_ARCH} != "alpha" +NOMAN= 1 +BINDIR= /usr/libexec/cross/alpha-freebsdelf .endif SRCS+= obj-elf.c tc-alpha.c diff --git a/gnu/usr.bin/binutils/as/as_alpha/Makefile b/gnu/usr.bin/binutils/as/as_alpha/Makefile index 5d694f23c37b2..68740645a25f9 100644 --- a/gnu/usr.bin/binutils/as/as_alpha/Makefile +++ b/gnu/usr.bin/binutils/as/as_alpha/Makefile @@ -4,10 +4,10 @@ .include "${.CURDIR}/../Makefile.inc0" -.if ${MACHINE_ARCH} == "alpha" PROG= as -.else -PROG= as_alpha +.if ${MACHINE_ARCH} != "alpha" +NOMAN= 1 +BINDIR= /usr/libexec/cross/alpha-freebsdelf .endif SRCS+= obj-elf.c tc-alpha.c diff --git a/gnu/usr.bin/binutils/as/as_i386/Makefile b/gnu/usr.bin/binutils/as/as_i386/Makefile index 69d9639473f33..fb70ad7c9ea53 100644 --- a/gnu/usr.bin/binutils/as/as_i386/Makefile +++ b/gnu/usr.bin/binutils/as/as_i386/Makefile @@ -4,10 +4,10 @@ .include "${.CURDIR}/../Makefile.inc0" -.if ${MACHINE_ARCH} == "i386" PROG= as -.else -PROG= as_i386 +.if ${MACHINE_ARCH} != "i386" +NOMAN= 1 +BINDIR= /usr/libexec/cross/i386-freebsdelf .endif SRCS+= obj-elf.c tc-i386.c diff --git a/gnu/usr.bin/binutils/as/i386-freebsd/Makefile b/gnu/usr.bin/binutils/as/i386-freebsd/Makefile index 69d9639473f33..fb70ad7c9ea53 100644 --- a/gnu/usr.bin/binutils/as/i386-freebsd/Makefile +++ b/gnu/usr.bin/binutils/as/i386-freebsd/Makefile @@ -4,10 +4,10 @@ .include "${.CURDIR}/../Makefile.inc0" -.if ${MACHINE_ARCH} == "i386" PROG= as -.else -PROG= as_i386 +.if ${MACHINE_ARCH} != "i386" +NOMAN= 1 +BINDIR= /usr/libexec/cross/i386-freebsdelf .endif SRCS+= obj-elf.c tc-i386.c diff --git a/gnu/usr.bin/binutils/as/mips-freebsd/Makefile b/gnu/usr.bin/binutils/as/mips-freebsd/Makefile index b7c2461f77340..ec7419f46c2b4 100644 --- a/gnu/usr.bin/binutils/as/mips-freebsd/Makefile +++ b/gnu/usr.bin/binutils/as/mips-freebsd/Makefile @@ -4,10 +4,10 @@ .include "${.CURDIR}/../Makefile.inc0" -.if ${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb" PROG= as -.else -PROG= as_mips +.if ${MACHINE_ARCH} != "mipsel" && ${MACHINE_ARCH} != "mipseb" +NOMAN= 1 +BINDIR= /usr/libexec/cross/mips-freebsdelf .endif .if ${MACHINE_ARCH} == "mipsel" CFLAGS+= -DTARGET_BYTES_BIG_ENDIAN=0 |
