mirror of
https://github.com/opnsense/src.git
synced 2026-04-07 18:35:22 -04:00
14 lines
362 B
Makefile
14 lines
362 B
Makefile
# $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>
|