Home | History | Annotate | Line # | Download | only in mount_null
      1 #	$NetBSD: Makefile,v 1.13 2020/07/26 08:20:22 mlelstv Exp $
      2 #	@(#)Makefile	8.3 (Berkeley) 3/27/94
      3 
      4 .include <bsd.own.mk>
      5 
      6 PROG=	mount_null
      7 SRCS=	mount_null.c pathadj.c
      8 MAN=	mount_null.8
      9 
     10 MOUNT=  ${NETBSDSRCDIR}/sbin/mount
     11 CPPFLAGS+= -I${NETBSDSRCDIR}/sys -I${MOUNT}
     12 .PATH:  ${MOUNT}
     13 
     14 DPADD+=${LIBUTIL}
     15 LDADD+=-lutil
     16 
     17 .include <bsd.prog.mk>
     18