blob: 52160cbe2565de0e82ef8bc38c947618e56d98dd (
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
|
# $OpenBSD: Makefile,v 1.6 1997/09/21 11:37:24 deraadt Exp $
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>
|