freebsd-dev/share/examples/sunrpc/Makefile
Mike Pritchard 72c03f2b85 Remove the -lrpclib, since it causes the build of these examples
to fail.

Closes PR# 2359

Submitted by:	Pedro A M Vazquez <vazquez@IQM.Unicamp.BR>
1997-02-26 06:56:57 +00:00

26 lines
353 B
Makefile

#
# @(#)Makefile 2.1 88/08/02 4.0 RPCSRC
#
#
# Build all demo services
#
MAKE = make
LIB=
SUBDIR= dir msg sort
all: ${SUBDIR}
clean cleanup:
cd dir; $(MAKE) ${MFLAGS} cleanup
cd msg; $(MAKE) ${MFLAGS} cleanup
cd sort; $(MAKE) ${MFLAGS} cleanup
install:
@echo "No installations done."
${SUBDIR}: FRC
cd $@; $(MAKE) ${MFLAGS} LIB=$(LIB)
FRC: