Home | History | Annotate | Line # | Download | only in ofctl
Makefile revision 1.8
      1  1.1  macallan #	from: @(#)Makefile	5.8 (Berkeley) 7/28/90
      2  1.8      matt #	$NetBSD: Makefile,v 1.8 2013/05/02 03:56:42 matt 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.7      matt 	|| ${MACHINE} == "sparc"
     11  1.1  macallan 
     12  1.1  macallan PROG=	ofctl
     13  1.1  macallan 
     14  1.1  macallan SRCS=	ofctl.c
     15  1.1  macallan 
     16  1.4      matt LDADD+=	-lprop
     17  1.4      matt DPADD+=	${LIBPROP}
     18  1.4      matt 
     19  1.1  macallan .endif
     20  1.1  macallan 
     21  1.1  macallan MAN=	ofctl.8
     22  1.1  macallan 
     23  1.1  macallan .include <bsd.prog.mk>
     24