1# 2# @(#)Makefile 2.1 88/08/02 4.0 RPCSRC 3# 4# 5# Build all demo services 6# 7# $FreeBSD$ 8# 9 10PACKAGE=examples 11FILESDIR=${SHAREDIR}/examples/sunrpc 12MAKE = make 13LIB= 14 15SUBDIR= dir msg sort 16 17all: ${SUBDIR} 18 19clean cleanup: 20 cd dir; $(MAKE) ${MFLAGS} cleanup 21 cd msg; $(MAKE) ${MFLAGS} cleanup 22 cd sort; $(MAKE) ${MFLAGS} cleanup 23 24install: 25 @echo "No installations done." 26 27${SUBDIR}: FRC 28 cd $@; $(MAKE) ${MFLAGS} LIB=$(LIB) 29 30FRC: 31