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 | |
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')
-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 | ||||
-rw-r--r-- | src/kadmin/client/ChangeLog | 4 | ||||
-rw-r--r-- | src/kadmin/client/Makefile.in | 7 | ||||
-rw-r--r-- | src/kadmin/kpasswd/ChangeLog | 4 | ||||
-rw-r--r-- | src/kadmin/kpasswd/Makefile.in | 6 | ||||
-rw-r--r-- | src/kadmin/server/ChangeLog | 4 |
9 files changed, 29 insertions, 11 deletions
diff --git a/src/appl/simple/client/ChangeLog b/src/appl/simple/client/ChangeLog new file mode 100644 index 0000000000..52c8b242e2 --- /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 186e16c241..75dca9f5ae 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 0000000000..67a34773b2 --- /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 a2b53637cf..536981c5f3 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 diff --git a/src/kadmin/client/ChangeLog b/src/kadmin/client/ChangeLog index 0d352b3ff0..d48516572b 100644 --- a/src/kadmin/client/ChangeLog +++ b/src/kadmin/client/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 29 22:39:10 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: relink executable if libraries change + Thu Sep 15 16:49:19 1994 Theodore Y. Ts'o (tytso@dcl) * kadm_add.c (kadm_add_user): Don't chop off last character of diff --git a/src/kadmin/client/Makefile.in b/src/kadmin/client/Makefile.in index 25faf6e5a1..0242f66ad3 100644 --- a/src/kadmin/client/Makefile.in +++ b/src/kadmin/client/Makefile.in @@ -10,10 +10,7 @@ KDBLIB=$(TOPLIBD)/libkdb5.a all:: KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(SSLIB) $(COMERRLIB) $(DBMLIB) - -DEPLIBS = $(DEPKDBLIB) $(DEPKLIB) -LOCAL_LIBRARIES = $(KDBLIB) $(KLIB) - +DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(SSLIB) $(COMERRLIB) $(DBMLIB) SRCS = \ $(srcdir)/kadmin.c \ @@ -41,7 +38,7 @@ OBJS = \ all:: kadmin -kadmin: $(KDBDEPLIB) $(OBJS) $(DEBKLIB) +kadmin: $(KDBDEPLIB) $(OBJS) $(DEPKLIB) $(CC) $(CFLAGS) -o kadmin $(OBJS) $(KLIB) $(LIBS) install:: diff --git a/src/kadmin/kpasswd/ChangeLog b/src/kadmin/kpasswd/ChangeLog index 49f0c2d190..322a099b8a 100644 --- a/src/kadmin/kpasswd/ChangeLog +++ b/src/kadmin/kpasswd/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 29 22:40:10 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: relink executable if libraries change + Tue Aug 9 21:42:02 1994 Tom Yu (tlyu@dragons-lair) * networked.c: yet another utent fix diff --git a/src/kadmin/kpasswd/Makefile.in b/src/kadmin/kpasswd/Makefile.in index 99b009e6e1..302abaa633 100644 --- a/src/kadmin/kpasswd/Makefile.in +++ b/src/kadmin/kpasswd/Makefile.in @@ -10,9 +10,7 @@ KDBLIB=$(TOPLIBD)/libkdb5.a all:: KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(SSLIB) $(COMERRLIB) $(DBMLIB) - -DEPLIBS = $(DEPKDBLIB) $(DEPKLIB) -LOCAL_LIBRARIES = $(KDBLIB) $(KLIB) +DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(SSLIB) $(COMERRLIB) $(DBMLIB) SRCS = \ $(srcdir)/networked.c \ @@ -25,7 +23,7 @@ OBJS = \ all:: kpasswd -kpasswd: $(KDBDEPLIB) $(OBJS) $(DEBKLIB) +kpasswd: $(KDBDEPLIB) $(OBJS) $(DEPKLIB) $(CC) $(CFLAGS) -o kpasswd $(OBJS) $(KLIB) $(LIBS) install:: diff --git a/src/kadmin/server/ChangeLog b/src/kadmin/server/ChangeLog index 81726febfe..8c1ad6d524 100644 --- a/src/kadmin/server/ChangeLog +++ b/src/kadmin/server/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 29 22:41:08 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: relink executable if libraries change + Wed Sep 14 22:33:23 1994 Theodore Y. Ts'o (tytso@dcl) * adm_server (init_db): Save a copy of the master key database |