From 0e980faf3ec4e0f64823a8edabdc4b045a3dc83c Mon Sep 17 00:00:00 2001 From: "William F. Jolitz" Date: Thu, 23 Aug 1990 15:02:50 -0800 Subject: [PATCH 1/1] 386BSD 0.1 development Work on file usr/src/lib/librpc/Makefile Co-Authored-By: Lynne Greer Jolitz Synthesized-from: 386BSD-0.1 --- usr/src/lib/librpc/Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 usr/src/lib/librpc/Makefile diff --git a/usr/src/lib/librpc/Makefile b/usr/src/lib/librpc/Makefile new file mode 100644 index 0000000000..bafff291eb --- /dev/null +++ b/usr/src/lib/librpc/Makefile @@ -0,0 +1,30 @@ +# +# @(#)Makefile 2.1 88/08/11 4.0 RPCSRC +# +# Build and install everything. +# +# These directories are presumed to exist in DESTDIR: +# /usr/lib /usr/bin /usr/include +# +DESTDIR= +CFLAGS=-O +MAKE=make + +# These are not used by BSD except portmap which lives in +# /usr/src/usr.sbin/portmap. +# SUBDIR= rpcgen etc rpcsvc + +all install: rpclib ${SUBDIR} + +rpclib: FRC + @echo "Building and installing RPC library" + cd rpc; $(MAKE) ${MFLAGS} all DESTDIR=${DESTDIR}; \ + $(MAKE) ${MFLAGS} install DESTDIR=${DESTDIR} + +${SUBDIR}: FRC + @echo "Building and installing files from: $@" + cd $@; $(MAKE) ${MFLAGS} DESTDIR=${DESTDIR} CFLAGS=${CFLAGS};\ + $(MAKE) ${MFLAGS} install DESTDIR=${DESTDIR} + +FRC: + -- 2.20.1