xref: /freebsd/share/examples/sunrpc/Makefile (revision 97759ccc)
1#   Build all demo services
2#
3#
4
5PACKAGE=examples
6FILESDIR=${SHAREDIR}/examples/sunrpc
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