Home | History | Annotate | Line # | Download | only in finger
Makefile revision 1.10
      1 #	$NetBSD: Makefile,v 1.10 2005/01/10 02:58:59 lukem Exp $
      2 #	from: @(#)Makefile	8.1 (Berkeley) 6/6/93
      3 
      4 .include <bsd.own.mk>
      5 
      6 PROG=	finger
      7 SRCS=	finger.c lprint.c net.c sprint.c util.c utmpentry.c
      8 
      9 .PATH.c: ${NETBSDSRCDIR}/usr.bin/who
     10 CPPFLAGS+=-I${NETBSDSRCDIR}/usr.bin/who -DSUPPORT_UTMPX -DSUPPORT_UTMP
     11 
     12 .if (${USE_INET6} != "no")
     13 CPPFLAGS+=-DINET6
     14 .endif
     15 
     16 .include <bsd.prog.mk>
     17