Use $(LD) instead of $(CC) at link stage - this allows one to use
authorEzra Peisach <epeisach@mit.edu>
Thu, 31 Oct 1996 18:15:53 +0000 (18:15 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 31 Oct 1996 18:15:53 +0000 (18:15 +0000)
purify correctly.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9266 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/rpc/unit-test/ChangeLog
src/lib/rpc/unit-test/Makefile.in

index a5d21e8a5cf2cc3cda061fdd438ea243c6b9af93..e8f60889bfac226ab3c83eb245b4602494affea2 100644 (file)
@@ -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
index a9ec059c00c3b1cb4bb24b4db54264c9134a0c5a..5253b38e535f84ec7a89a1312c37290f4ff3bebc 100644 (file)
@@ -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