blob: 745836b4aa6cdb122683fbce4f905c823b90e8a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: Makefile,v 1.2 2013/08/11 06:04:38 dholland Exp $
#
.include <bsd.own.mk>
PROG= mount_chfs
SRCS= mount_chfs.c fattr.c pathadj.c
MAN= mount_chfs.8
MOUNT= ${NETBSDSRCDIR}/sbin/mount
.PATH: ${MOUNT}
CPPFLAGS+= -I${MOUNT}
DPADD+= ${LIBUTIL}
LDADD+= -lutil
.include <bsd.prog.mk>
|