blob: 117e3c3f03c36b1d9ad3c40f1e4fceff67380fae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $OpenBSD: Makefile,v 1.5 1997/04/19 21:26:22 millert Exp $
# $NetBSD: Makefile,v 1.5 1996/02/18 11:59:09 fvdl Exp $
# @(#)Makefile 8.2 (Berkeley) 3/27/94
PROG= mount_nfs
SRCS= mount_nfs.c getmntopts.c
MAN= mount_nfs.8
# Temporarily removed to use own getmntops.c - fvdl
#
#MOUNT= ${.CURDIR}/../mount
#CFLAGS+= -DNFS -I${MOUNT}
#.PATH: ${MOUNT}
CFLAGS+=-DNFS
# NFSKERB is not currently supported
#
#.include <bsd.own.mk> # For KERBEROS
#
#.if (${KERBEROS} == "yes")
#CFLAGS+=-DNFSKERB
#DPADD+= ${LIBKRB} ${LIBDES}
#LDADD+= -lkrb -ldes
#.endif
.include <bsd.prog.mk>
|