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