From ae4b48ec014a77fb9b7fa6c83973b5edd492fab3 Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Wed, 6 Nov 1996 21:16:09 +0000 Subject: [PATCH] * Makefile.in: Add dependencies on $(srcdir)/foo.c so that some makes can deal with VPATH properly (e.g. NetBSD pmake) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9305 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/rpc/unit-test/ChangeLog | 4 ++++ src/lib/rpc/unit-test/Makefile.in | 3 +++ 2 files changed, 7 insertions(+) diff --git a/src/lib/rpc/unit-test/ChangeLog b/src/lib/rpc/unit-test/ChangeLog index 79e4778fb..599a0adfe 100644 --- a/src/lib/rpc/unit-test/ChangeLog +++ b/src/lib/rpc/unit-test/ChangeLog @@ -1,3 +1,7 @@ +Wed Nov 6 16:12:26 1996 Tom Yu + * Makefile.in: Add dependencies on $(srcdir)/foo.c so that some + makes can deal with VPATH properly (e.g. NetBSD pmake) + Mon Nov 4 23:12:06 1996 Theodore Ts'o * server.c: We don't need the special case for linux anymore, diff --git a/src/lib/rpc/unit-test/Makefile.in b/src/lib/rpc/unit-test/Makefile.in index 5253b38e5..f32c0559f 100644 --- a/src/lib/rpc/unit-test/Makefile.in +++ b/src/lib/rpc/unit-test/Makefile.in @@ -8,6 +8,9 @@ client: client.o rpc_test_clnt.o $(DEPLIBS) server: server.o rpc_test_svc.o $(DEPLIBS) $(LD) $(LDFLAGS) $(LDARGS) -o server server.o rpc_test_svc.o $(LIBS) +client.o: $(srcdir)/client.c +server.o: $(srcdir)/server.o + client.c server.c: rpc_test.h # If rpc_test.h and rpc_test_*.c do not work on your system, you can -- 2.26.2