From ccfaefdf174943379ddd8e9aa8a139a8d7d70c8e Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Fri, 30 Sep 1994 02:47:33 +0000 Subject: Relink executable if libraries change git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4399 dc483132-0cff-0310-8789-dd5450dbe970 --- src/appl/simple/client/ChangeLog | 5 +++++ src/appl/simple/client/Makefile.in | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 src/appl/simple/client/ChangeLog (limited to 'src/appl/simple/client') diff --git a/src/appl/simple/client/ChangeLog b/src/appl/simple/client/ChangeLog new file mode 100644 index 000000000..52c8b242e --- /dev/null +++ b/src/appl/simple/client/ChangeLog @@ -0,0 +1,5 @@ +Thu Sep 29 22:45:52 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: Relink executable if library changes + + diff --git a/src/appl/simple/client/Makefile.in b/src/appl/simple/client/Makefile.in index 186e16c24..75dca9f5a 100644 --- a/src/appl/simple/client/Makefile.in +++ b/src/appl/simple/client/Makefile.in @@ -8,10 +8,11 @@ DBMLIB= all:: KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB) +DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB) $(DBMLIB) LOCALINCLUDE= -I.. -I$(srcdir)/.. -sim_client: sim_client.o +sim_client: sim_client.o $(DEPKLIB) $(CC) $(CFLAGS) -o sim_client sim_client.o $(KLIB) $(LIBS) sim_client.o: $(srcdir)/sim_client.c -- cgit