xref: /freebsd/share/examples/sunrpc/sort/Makefile (revision 97759ccc715c4b365432c16d763c50eecfcb1100)
1*a5921bc3SGlen BarberPACKAGE=examples
2*a5921bc3SGlen BarberFILESDIR=${SHAREDIR}/examples/sunrpc/sort
3944fcc15SGarrett WollmanBIN =  rsort sort_svc
4944fcc15SGarrett WollmanGEN = sort_clnt.c sort_svc.c sort_xdr.c sort.h
5944fcc15SGarrett WollmanLIB = -lrpclib
6944fcc15SGarrett WollmanRPCCOM = rpcgen
7944fcc15SGarrett Wollman
8944fcc15SGarrett Wollmanall: $(BIN)
9944fcc15SGarrett Wollman
10944fcc15SGarrett Wollmanrsort: rsort.o sort_clnt.o sort_xdr.o
11944fcc15SGarrett Wollman	$(CC) $(LDFLAGS) -o $@ rsort.o sort_clnt.o sort_xdr.o $(LIB)
12944fcc15SGarrett Wollman
13944fcc15SGarrett Wollmanrsort.o: rsort.c sort.h
14944fcc15SGarrett Wollman
15944fcc15SGarrett Wollmansort_clnt.c:
16944fcc15SGarrett Wollman	$(RPCCOM) -l sort.x >$@
17944fcc15SGarrett Wollman
18944fcc15SGarrett Wollmansort_svc: sort_proc.o sort_svc.o sort_xdr.o
19944fcc15SGarrett Wollman	$(CC) $(LDFLAGS) -o $@ sort_proc.o sort_svc.o sort_xdr.o $(LIB)
20944fcc15SGarrett Wollman
21944fcc15SGarrett Wollmansort_proc.o: sort_proc.c sort.h
22944fcc15SGarrett Wollman
23944fcc15SGarrett Wollmansort_svc.c:
24944fcc15SGarrett Wollman	$(RPCCOM) -s udp sort.x >$@
25944fcc15SGarrett Wollman
26944fcc15SGarrett Wollmansort_xdr.c:
27944fcc15SGarrett Wollman	$(RPCCOM) -c sort.x >$@
28944fcc15SGarrett Wollman
29944fcc15SGarrett Wollmansort.h:
30944fcc15SGarrett Wollman	$(RPCCOM) -h sort.x >$@
31944fcc15SGarrett Wollman
32944fcc15SGarrett Wollmanclean cleanup:
33944fcc15SGarrett Wollman	rm -f $(GEN) *.o $(BIN)
34944fcc15SGarrett Wollman
35