blob: 258808b2bba49434d08732997f520c701686d6bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $FreeBSD$
.include "${.CURDIR}/../Makefile.inc0"
.if ${TARGET_ARCH} != "sparc64"
NOMAN= true
BINDIR= /usr/libexec/cross/sparc64-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-sparc.c
.include <bsd.prog.mk>
|