NetBSD/usr.sbin/ofctl/Makefile
ryo fe33aa2786 Add initial support for ARMv8 (AARCH64) (by nisimura@ and ryo@)
- sys/arch/evbarm64 is gone and integrated into sys/arch/evbarm. (by skrll@)
- add support fdt. evbarm/conf/GENERIC64 fdt (bcm2837,sunxi,tegra) based generic 64bit kernel config. (by skrll@, jmcneill@)
2018-04-01 04:35:01 +00:00

25 lines
410 B
Makefile

# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
# $NetBSD: Makefile,v 1.9 2018/04/01 04:35:06 ryo Exp $
.include <bsd.own.mk>
.if ${MACHINE} == "sparc64" \
|| ${MACHINE} == "macppc" \
|| ${MACHINE} == "ofppc" \
|| ${MACHINE_CPU} == "arm" \
|| ${MACHINE_CPU} == "aarch64" \
|| ${MACHINE} == "sparc"
PROG= ofctl
SRCS= ofctl.c
LDADD+= -lprop
DPADD+= ${LIBPROP}
.endif
MAN= ofctl.8
.include <bsd.prog.mk>