Home | History | Annotate | Line # | Download | only in ofctl
Makefile revision 1.10.8.1
      1       1.1  macallan #	from: @(#)Makefile	5.8 (Berkeley) 7/28/90
      2  1.10.8.1  perseant #	$NetBSD: Makefile,v 1.10.8.1 2025/08/02 05:58:53 perseant 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.10  jmcneill 	|| ${MACHINE} == "sparc" \
     12  1.10.8.1  perseant 	|| ${MACHINE} == "evbmips" \
     13  1.10.8.1  perseant 	|| ${MACHINE_CPU} == "riscv"
     14       1.1  macallan 
     15       1.1  macallan PROG=	ofctl
     16       1.1  macallan 
     17       1.1  macallan SRCS=	ofctl.c
     18       1.1  macallan 
     19       1.4      matt LDADD+=	-lprop
     20       1.4      matt DPADD+=	${LIBPROP}
     21       1.4      matt 
     22       1.1  macallan .endif
     23       1.1  macallan 
     24       1.1  macallan MAN=	ofctl.8
     25       1.1  macallan 
     26       1.1  macallan .include <bsd.prog.mk>
     27