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