source: network-demos/rpc_demo/Makefile.host @ cd8aff0

4.11network-demos-4-10-branchnetwork-demos-4-8-branchnetwork-demos-4-9-branch
Last change on this file since cd8aff0 was e6f3168, checked in by Joel Sherrill <joel.sherrill@…>, on 04/29/00 at 19:53:34

New test from Eric Norum <eric@…> to exercise RPC/XDR.

  • Property mode set to 100644
File size: 507 bytes
Line 
1CFLAGS += -g
2
3all: server rprintmsg
4
5rprintmsg: rprintmsg.o msg_clnt.o
6        $(CC) $(CFLAGS) -o rprintmsg rprintmsg.o msg_clnt.o
7
8server: msg_main.o msg_proc.o
9        $(CC) $(CFLAGS) -o server msg_main.o msg_proc.o
10
11clean:
12        rm -f rprintmsg server \
13                msg_main.o msg_server.o msg_proc.o \
14                rprintmsg.o msg_clnt.o \
15                msg_server.h msg_clnt.c msg.h
16
17msg_main.o: msg.h msg_server.h
18
19msg.h: msg.x
20        rpcgen -h msg.x >msg.h
21
22msg_server.h: msg.x
23        rpcgen -m msg.x >msg_server.h
24
25msg_clnt.c: msg.x
26        rpcgen -l msg.x >msg_clnt.c
Note: See TracBrowser for help on using the repository browser.