Home | History | Annotate | Line # | Download | only in mount_ntfs
Makefile revision 1.8
      1 #	$NetBSD: Makefile,v 1.8 2005/02/05 15:06:15 xtraeme Exp $
      2 #
      3 #	Id: Makefile,v 1.1.1.1 1999/02/03 03:51:19 semenu Exp 
      4 #
      5 
      6 .include <bsd.own.mk>
      7 
      8 PROG=	mount_ntfs
      9 SRCS=	mount_ntfs.c fattr.c
     10 MAN=	mount_ntfs.8
     11 
     12 WARNS=	3
     13 
     14 MOUNT=	${NETBSDSRCDIR}/sbin/mount
     15 CPPFLAGS+= -I${MOUNT}
     16 .PATH:	${MOUNT}
     17 
     18 DPADD+=${LIBUTIL}
     19 LDADD+=-lutil
     20 
     21 .include <bsd.prog.mk>
     22