mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
6b3ced65a9
and include it explicitly. The previous method of relying in the implicit inclusion of "../Makefile.inc" broke when WRKDIRPREFIX is set.
28 lines
592 B
Plaintext
28 lines
592 B
Plaintext
*** /dev/null Thu Oct 6 16:22:04 1994
|
|
--- Makefile.44bsd Thu Oct 6 17:18:19 1994
|
|
***************
|
|
*** 0 ****
|
|
--- 1,22 ----
|
|
+ #
|
|
+ # @(#)Makefile
|
|
+ # Makefile for rpc.pcnfsd for BSD/386 or similar
|
|
+ # $Id: patch-ab,v 1.2 1995/03/19 10:12:39 joerg Exp $
|
|
+ #
|
|
+
|
|
+ .include "Makefile.inc"
|
|
+ PROG= rpc.pcnfsd
|
|
+ SRCS= pcnfsd_svc.c pcnfsd_xdr.c pcnfsd_v1.c pcnfsd_v2.c pcnfsd_misc.c \
|
|
+ pcnfsd_cache.c pcnfsd_print.c
|
|
+ MAN8= pcnfsd.8
|
|
+
|
|
+ CFLAGS+=-DHAVE_PARAM_H
|
|
+
|
|
+ DPADD+= ${LIBCRYPT}
|
|
+ LDADD+= -lcrypt
|
|
+
|
|
+ beforeinstall:
|
|
+ -mkdir -p ${BINDIR}
|
|
+ -mkdir -p ${PRDIR}
|
|
+
|
|
+ .include <bsd.prog.mk>
|