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