Makefile (72c03f2b8534e6243e283343dd91b7ea1310bc22) Makefile (a5921bc3653e2e286715e6fe8d473ec0d02da38c)
1#
2# @(#)Makefile 2.1 88/08/02 4.0 RPCSRC
3#
4#
5# Build all demo services
6#
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
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:
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: