freebsd-dev/gnu/usr.bin/binutils/as/Makefile
John Birrell 6bcce84f32 Add CROSS_TARGETS to the list of GASES to build. We end up with a separate
gas for each target format. So for m68k targets that means several
gases. I wanted a m68k gas for VxWorks which uses aout in sun3 big
endian format, cross compiled on i386 under FreeBSD using libraries
supplied by DEC and intended by them for cross compilation on Alpha
under OSF/1. And it actually works!
1998-05-11 09:31:17 +00:00

13 lines
223 B
Makefile

#
# $Id: Makefile,v 1.3 1998/05/04 22:01:27 jb Exp $
#
GASES= ${MACHINE_ARCH} ${CROSS_TOOLS} ${CROSS_TARGETS}
.for _g in ${GASES}
.if exists(${.CURDIR}/as_${_g})
SUBDIR+= as_${_g}
.endif
.endfor
.include <bsd.subdir.mk>