Home | History | Annotate | Line # | Download | only in mount_9p
Makefile revision 1.4
      1 #	$NetBSD: Makefile,v 1.4 2020/06/13 13:45:06 uwe Exp $
      2 #
      3 .include <bsd.init.mk>		# include early to pick up USE_*
      4 
      5 PROG=	mount_9p
      6 SRCS=	ninepuffs.c ninebuf.c nineproto.c fs.c node.c subr.c
      7 LDADD+= -lpuffs -lutil
      8 
      9 MAN=	mount_9p.8
     10 
     11 .if (${USE_INET6} != "no")
     12 CPPFLAGS += -DINET6
     13 .endif
     14 
     15 .include <bsd.prog.mk>
     16