Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#	@(#)Makefile	8.2 (Berkeley) 3/27/94
2
 
3
PROG=	mount_9fs
4
SRCS=	mount_9fs.c getmntopts.c crypt.c
5
MAN8=	mount_9fs.8
6
 
7
CFLAGS = -ggdb -O0
8
 
9
MOUNT=	/usr/src/sbin/mount
10
CFLAGS+= -DNFS -I${MOUNT}
11
.PATH:	${MOUNT}
12
 
13
.if exists(${DESTDIR}/usr/lib/libkrb.a) && (defined(MAKE_KERBEROS) \
14
	|| defined(MAKE_EBONES))
15
CFLAGS+=-DKERBEROS
16
DPADD=	${LIBKRB} ${LIBDES}
17
LDADD=	-lkrb -ldes
18
DISTRIBUTION=	krb
19
.endif
20
 
21
.include <bsd.prog.mk>