head	1.5;
access;
symbols
	RELENG_4_11_0_RELEASE:1.2.2.2
	RELENG_4_11:1.2.2.2.0.10
	RELENG_4_11_BP:1.2.2.2
	BEFORE_UN_JBING:1.4
	BEFORE_BU_2_15:1.4
	RELENG_4_10_0_RELEASE:1.2.2.2
	RELENG_4_10:1.2.2.2.0.8
	RELENG_4_10_BP:1.2.2.2
	RELENG_5_2_1_RELEASE:1.4
	RELENG_5_2_0_RELEASE:1.4
	RELENG_5_2:1.4.0.6
	RELENG_5_2_BP:1.4
	RELENG_4_9_0_RELEASE:1.2.2.2
	RELENG_4_9:1.2.2.2.0.6
	RELENG_4_9_BP:1.2.2.2
	RELENG_5_1_0_RELEASE:1.4
	RELENG_5_1:1.4.0.4
	RELENG_5_1_BP:1.4
	RELENG_4_8_0_RELEASE:1.2.2.2
	RELENG_4_8:1.2.2.2.0.4
	RELENG_4_8_BP:1.2.2.2
	RELENG_5_0_0_RELEASE:1.4
	RELENG_5_0:1.4.0.2
	RELENG_5_0_BP:1.4
	RELENG_4_7_0_RELEASE:1.2.2.2
	RELENG_4_7:1.2.2.2.0.2
	RELENG_4_7_BP:1.2.2.2
	BEFORE_BU_2121__RELENG4:1.2.2.1
	RELENG_4_6_2_RELEASE:1.2.2.1
	RELENG_4_6_1_RELEASE:1.2.2.1
	RELENG_4_6_0_RELEASE:1.2.2.1
	RELENG_4_6:1.2.2.1.0.8
	RELENG_4_6_BP:1.2.2.1
	BEFORE_BU_2_12:1.4
	RELENG_4_5_0_RELEASE:1.2.2.1
	BEFORE_BU_2112_snap:1.4
	RELENG_4_5:1.2.2.1.0.6
	RELENG_4_5_BP:1.2.2.1
	RELENG_4_4_0_RELEASE:1.2.2.1
	RELENG_4_4:1.2.2.1.0.4
	RELENG_4_4_BP:1.2.2.1
	BEFORE_BU_2112__RELENG4:1.2.2.1
	BEFORE_BU_2110:1.3
	RELENG_4_3_0_RELEASE:1.2.2.1
	RELENG_4_3:1.2.2.1.0.2
	RELENG_4_3_BP:1.2.2.1
	RELENG_4_2_0_RELEASE:1.2.2.1
	binutils_2_10_0:1.3
	RELENG_4_1_1_RELEASE:1.2.2.1
	PRE_SMPNG:1.3
	RELENG_4_1_0_RELEASE:1.2.2.1
	BEFORE_2_9_1_UPGRADE:1.2
	RELENG_4_0_0_RELEASE:1.2
	RELENG_4:1.2.0.2
	RELENG_4_BP:1.2;
locks; strict;
comment	@# @;


1.5
date	2004.07.08.17.05.31;	author obrien;	state dead;
branches;
next	1.4;

1.4
date	2001.10.15.01.43.22;	author obrien;	state Exp;
branches;
next	1.3;

1.3
date	2000.05.22.08.25.39;	author obrien;	state Exp;
branches;
next	1.2;

1.2
date	99.11.07.05.56.04;	author jb;	state Exp;
branches
	1.2.2.1;
next	1.1;

1.1
date	99.11.06.22.16.58;	author jb;	state Exp;
branches;
next	;

1.2.2.1
date	2000.07.06.22.15.47;	author obrien;	state Exp;
branches;
next	1.2.2.2;

1.2.2.2
date	2002.09.01.23.37.45;	author obrien;	state dead;
branches;
next	;


desc
@@


1.5
log
@MAJOR cleanup of the Bmake framework.
This includes removing all vestiges of the old not-really supported
ability to build cross tools targeting non-FreeBSD systems, such as
m68k Lynx and NetBSD.  Move as much duplicated code from platform
Makefiles into the shared Makefiles.  Add a simple mechanism for
specifying ELF 'ldscripts'.  Also share as many .h files as possible
(now a single bfd.h vs. one per platform).
@
text
@# $FreeBSD: src/gnu/usr.bin/binutils/as/powerpc-freebsd/Makefile,v 1.4 2001/10/15 01:43:22 obrien Exp $

.include "${.CURDIR}/../Makefile.inc0"

.if ${TARGET_ARCH} != "powerpc"
NOMAN=	true
BINDIR=	/usr/libexec/cross/powerpc-freebsd
# If we aren't doing cross-assembling, some operations can be optimized, since
# byte orders and value sizes don't need to be adjusted.
CFLAGS+= -DCROSS_COMPILE=1
.endif
SRCS+=	obj-elf.c tc-ppc.c


.include <bsd.prog.mk>
@


1.4
log
@We can easily share obj-format.h and targ-env.h files across all FreeBSD
platforms, which reduces the upgrade effort.
Also tidy up the Makefiles.
@
text
@d1 1
a1 1
# $FreeBSD$
@


1.3
log
@Conditionally define "CROSS_COMPILE" here.
@
text
@d1 1
a1 1
# $FreeBSD: src/gnu/usr.bin/binutils/as/powerpc-freebsd/Makefile,v 1.2 1999/11/07 05:56:04 jb Exp $
d5 3
a7 4
PROG=		as
.if	${TARGET_ARCH} != "powerpc"
NOMAN=		1
BINDIR=		/usr/libexec/cross/powerpc-freebsd
d10 1
a10 1
CFLAGS+=	-DCROSS_COMPILE=1
d12 1
a12 1
SRCS+=		obj-elf.c tc-ppc.c
@


1.2
log
@Replace freebsdelf with freebsd in BINDIR.

[ alpha-freebsd, i386-freebsd and mips-freebsd were repo-copied
  by Peter (one of the repo-men) ]

Requested by: obrien
@
text
@d1 1
a1 3
#
# $FreeBSD: src/gnu/usr.bin/binutils/as/powerpc-freebsd/Makefile,v 1.1 1999/11/06 22:16:58 jb Exp $
#
d6 1
d9 4
d14 1
@


1.2.2.1
log
@MFC:  Upgrade to Binutils 2.10.0.
@
text
@d1 3
a3 1
# $FreeBSD$
a7 1
.if	${TARGET_ARCH} != "powerpc"
a9 4
# If we aren't doing cross-assembling, some operations can be optimized, since
# byte orders and value sizes don't need to be adjusted.
CFLAGS+=	-DCROSS_COMPILE=1
.endif
a10 1

@


1.2.2.2
log
@MFC: remove these bits for platforms FreeBSD 4.x does not run on
     (some are ancient, back to the time of 2.9.1)
@
text
@d1 1
a1 1
# $FreeBSD: src/gnu/usr.bin/binutils/as/powerpc-freebsd/Makefile,v 1.2.2.1 2000/07/06 22:15:47 obrien Exp $
@


1.1
log
@gas for powerpc targeted to FreeBSD.
@
text
@d2 1
a2 1
# $FreeBSD$
d9 1
a9 1
BINDIR=		/usr/libexec/cross/powerpc-freebsdelf
@

