mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
configuration is TARGET_ARCH specific and must be generated with TARGET_ARCH set. Reviewed by: imp
8 lines
173 B
Makefile
8 lines
173 B
Makefile
# $FreeBSD$
|
|
|
|
TARGET=powerpc
|
|
.if ${MACHINE_ARCH} == powerpc || ${MACHINE_ARCH} == powerpc64
|
|
TARGET_ARCH?=${MACHINE_ARCH}
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../../conf/makeLINT.mk"
|