diff options
| author | Theodore Tso <tytso@mit.edu> | 1994-09-30 02:47:33 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1994-09-30 02:47:33 +0000 |
| commit | ccfaefdf174943379ddd8e9aa8a139a8d7d70c8e (patch) | |
| tree | f0f994ce3ed24f9df17b5e5e1cc00fc3c8b367be /src/appl/simple | |
| parent | a6c3b6fa64065a2307e7ef9f7ffcb50ae9656d40 (diff) | |
| download | krb5-ccfaefdf174943379ddd8e9aa8a139a8d7d70c8e.tar.gz krb5-ccfaefdf174943379ddd8e9aa8a139a8d7d70c8e.tar.xz krb5-ccfaefdf174943379ddd8e9aa8a139a8d7d70c8e.zip | |
Relink executable if libraries change
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4399 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl/simple')
| -rw-r--r-- | src/appl/simple/client/ChangeLog | 5 | ||||
| -rw-r--r-- | src/appl/simple/client/Makefile.in | 3 | ||||
| -rw-r--r-- | src/appl/simple/server/ChangeLog | 4 | ||||
| -rw-r--r-- | src/appl/simple/server/Makefile.in | 3 |
4 files changed, 13 insertions, 2 deletions
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 diff --git a/src/appl/simple/server/ChangeLog b/src/appl/simple/server/ChangeLog new file mode 100644 index 000000000..67a34773b --- /dev/null +++ b/src/appl/simple/server/ChangeLog @@ -0,0 +1,4 @@ +Thu Sep 29 22:46:51 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: relink executable when libraries change + diff --git a/src/appl/simple/server/Makefile.in b/src/appl/simple/server/Makefile.in index a2b53637c..536981c5f 100644 --- a/src/appl/simple/server/Makefile.in +++ b/src/appl/simple/server/Makefile.in @@ -10,8 +10,9 @@ LOCALINCLUDE= -I.. -I$(srcdir)/.. all:: KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB) +DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB) $(DBMLIB) -sim_server: sim_server.o +sim_server: sim_server.o $(DEPKLIB) $(CC) $(CFLAGS) -o sim_server sim_server.o $(KLIB) $(LIBS) sim_server.o: $(srcdir)/sim_server.c |
