diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/rpc/unit-test/ChangeLog | 5 | ||||
| -rw-r--r-- | src/lib/rpc/unit-test/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/rpc/unit-test/ChangeLog b/src/lib/rpc/unit-test/ChangeLog index a5d21e8a5..e8f60889b 100644 --- a/src/lib/rpc/unit-test/ChangeLog +++ b/src/lib/rpc/unit-test/ChangeLog @@ -1,3 +1,8 @@ +Thu Oct 31 13:14:45 1996 Ezra Peisach <epeisach@kangaroo.mit.edu> + + * Makefile.in (client,server): Use $(LD) instead of $(CC) in link + stage. + Thu Oct 31 08:47:47 1996 Ezra Peisach <epeisach@mit.edu> * Makefile.in: Only run tests if required programs, libraries diff --git a/src/lib/rpc/unit-test/Makefile.in b/src/lib/rpc/unit-test/Makefile.in index a9ec059c0..5253b38e5 100644 --- a/src/lib/rpc/unit-test/Makefile.in +++ b/src/lib/rpc/unit-test/Makefile.in @@ -3,10 +3,10 @@ CFLAGS = $(CCOPTS) $(DEFS) $(LOCALINCLUDE) -I. all:: client server client: client.o rpc_test_clnt.o $(DEPLIBS) - $(CC) $(LDFLAGS) $(LDARGS) -o client client.o rpc_test_clnt.o $(LIBS) + $(LD) $(LDFLAGS) $(LDARGS) -o client client.o rpc_test_clnt.o $(LIBS) server: server.o rpc_test_svc.o $(DEPLIBS) - $(CC) $(LDFLAGS) $(LDARGS) -o server server.o rpc_test_svc.o $(LIBS) + $(LD) $(LDFLAGS) $(LDARGS) -o server server.o rpc_test_svc.o $(LIBS) client.c server.c: rpc_test.h |
