summaryrefslogtreecommitdiff
path: root/sys/src/cmd/unix/9pfreebsd/mount_9fs/Makefile
blob: 9cf4469cf47a24b444c55b05255c41863e7ae982 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#	@(#)Makefile	8.2 (Berkeley) 3/27/94

PROG=	mount_9fs
SRCS=	mount_9fs.c getmntopts.c crypt.c
MAN8=	mount_9fs.8

CFLAGS = -ggdb -O0

MOUNT=	/usr/src/sbin/mount
CFLAGS+= -DNFS -I${MOUNT}
.PATH:	${MOUNT}

.if exists(${DESTDIR}/usr/lib/libkrb.a) && (defined(MAKE_KERBEROS) \
	|| defined(MAKE_EBONES))
CFLAGS+=-DKERBEROS
DPADD=	${LIBKRB} ${LIBDES}
LDADD=	-lkrb -ldes
DISTRIBUTION=	krb
.endif

.include <bsd.prog.mk>