blob: 826a648ed08a12d0098a9a3c79b12ebdb43ce461 (
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.7 2000/09/03 18:41:16 espie 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:L} == "yes")
#CFLAGS+=-DNFSKERB
#DPADD+= ${LIBKRB} ${LIBDES}
#LDADD+= -lkrb -ldes
#.endif
.include <bsd.prog.mk>
|