Home | History | Annotate | Line # | Download | only in finger
      1 #	$NetBSD: Makefile,v 1.11 2007/05/28 12:06:26 tls Exp $
      2 #	from: @(#)Makefile	8.1 (Berkeley) 6/6/93
      3 
      4 .include <bsd.own.mk>
      5 
      6 USE_FORT?= yes	# network client
      7 
      8 PROG=	finger
      9 SRCS=	finger.c lprint.c net.c sprint.c util.c utmpentry.c
     10 
     11 .PATH.c: ${NETBSDSRCDIR}/usr.bin/who
     12 CPPFLAGS+=-I${NETBSDSRCDIR}/usr.bin/who -DSUPPORT_UTMPX -DSUPPORT_UTMP
     13 
     14 .if (${USE_INET6} != "no")
     15 CPPFLAGS+=-DINET6
     16 .endif
     17 
     18 .include <bsd.prog.mk>
     19