1# from: @(#)Makefile 5.8 (Berkeley) 7/28/90 2# $NetBSD: Makefile,v 1.9 2018/04/01 04:35:06 ryo Exp $ 3 4.include <bsd.own.mk> 5 6.if ${MACHINE} == "sparc64" \ 7 || ${MACHINE} == "macppc" \ 8 || ${MACHINE} == "ofppc" \ 9 || ${MACHINE_CPU} == "arm" \ 10 || ${MACHINE_CPU} == "aarch64" \ 11 || ${MACHINE} == "sparc" 12 13PROG= ofctl 14 15SRCS= ofctl.c 16 17LDADD+= -lprop 18DPADD+= ${LIBPROP} 19 20.endif 21 22MAN= ofctl.8 23 24.include <bsd.prog.mk> 25