xref: /freebsd/share/examples/sunrpc/sort/Makefile (revision 97759ccc715c4b365432c16d763c50eecfcb1100)
1PACKAGE=examples
2FILESDIR=${SHAREDIR}/examples/sunrpc/sort
3BIN =  rsort sort_svc
4GEN = sort_clnt.c sort_svc.c sort_xdr.c sort.h
5LIB = -lrpclib
6RPCCOM = rpcgen
7
8all: $(BIN)
9
10rsort: rsort.o sort_clnt.o sort_xdr.o
11	$(CC) $(LDFLAGS) -o $@ rsort.o sort_clnt.o sort_xdr.o $(LIB)
12
13rsort.o: rsort.c sort.h
14
15sort_clnt.c:
16	$(RPCCOM) -l sort.x >$@
17
18sort_svc: sort_proc.o sort_svc.o sort_xdr.o
19	$(CC) $(LDFLAGS) -o $@ sort_proc.o sort_svc.o sort_xdr.o $(LIB)
20
21sort_proc.o: sort_proc.c sort.h
22
23sort_svc.c:
24	$(RPCCOM) -s udp sort.x >$@
25
26sort_xdr.c:
27	$(RPCCOM) -c sort.x >$@
28
29sort.h:
30	$(RPCCOM) -h sort.x >$@
31
32clean cleanup:
33	rm -f $(GEN) *.o $(BIN)
34
35