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