mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
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!
12 lines
223 B
Makefile
12 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>
|