From 76ebad249ff9fa73c814276fab44a68526f8626e Mon Sep 17 00:00:00 2001 From: brezak Date: Wed, 27 Jul 1994 03:15:31 +0000 Subject: [PATCH] If in a kerberos environment; build -DKERBEROS --- sbin/mount_nfs/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/sbin/mount_nfs/Makefile b/sbin/mount_nfs/Makefile index f33b461560cf..40dd332933f6 100644 --- a/sbin/mount_nfs/Makefile +++ b/sbin/mount_nfs/Makefile @@ -1,4 +1,5 @@ -# @(#)Makefile 8.2 (Berkeley) 3/27/94 +# from: @(#)Makefile 8.2 (Berkeley) 3/27/94 +# $Id: Makefile,v 1.2 1994/07/27 03:15:31 brezak Exp $ PROG= mount_nfs SRCS= mount_nfs.c getmntopts.c @@ -8,7 +9,10 @@ MOUNT= ${.CURDIR}/../mount CFLAGS+= -DNFS -I${MOUNT} .PATH: ${MOUNT} -DPADD= ${LIBRPC} -LDADD= -lrpc +.if defined(KERBEROS) +CFLAGS+=-DKERBEROS +DPADD+= ${LIBKRB} ${LIBDES} +LDADD+= -lkrb -ldes +.endif .include