Remove the distribute, redistribute and distributeworld targets.
[dragonfly.git] / sbin / mount_nfs / Makefile
1 #       @(#)Makefile    8.2 (Berkeley) 3/27/94
2 #
3 # $FreeBSD: src/sbin/mount_nfs/Makefile,v 1.8.2.1 2001/04/25 10:58:37 ru Exp $
4 # $DragonFly: src/sbin/mount_nfs/Makefile,v 1.5 2006/10/17 00:55:42 pavalos Exp $
5
6 PROG=   mount_nfs
7 SRCS=   mount_nfs.c getmntopts.c mounttab.c
8 MAN=    mount_nfs.8
9
10 MOUNT=  ${.CURDIR}/../mount
11 UMNTALL= ${.CURDIR}/../../usr.sbin/rpc.umntall
12 CFLAGS+= -DNFS -I${MOUNT} -I${UMNTALL}
13 .PATH: ${MOUNT} ${UMNTALL}
14
15 .if exists(${DESTDIR}/usr/lib/libkrb.a) && defined(WANT_KERBEROS)
16 CFLAGS+=-DKERBEROS
17 DPADD=  ${LIBKRB} ${LIBCRYPTO}
18 LDADD=  -lkrb -lcrypto
19 .endif
20
21 .include <bsd.prog.mk>