Relink executable when library changes
authorTheodore Tso <tytso@mit.edu>
Thu, 29 Sep 1994 04:04:56 +0000 (04:04 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 29 Sep 1994 04:04:56 +0000 (04:04 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4373 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/sample/sclient/ChangeLog [new file with mode: 0644]
src/appl/sample/sclient/Makefile.in
src/appl/sample/sserver/ChangeLog [new file with mode: 0644]
src/appl/sample/sserver/Makefile.in
src/kdc/ChangeLog
src/kdc/Makefile.in

diff --git a/src/appl/sample/sclient/ChangeLog b/src/appl/sample/sclient/ChangeLog
new file mode 100644 (file)
index 0000000..2b58882
--- /dev/null
@@ -0,0 +1,5 @@
+Wed Sep 28 23:09:00 1994  Theodore Y. Ts'o  (tytso@dcl)
+
+       * Makefile.in: Relink executable when library chages.
+
+
index 01c07429fc4f3a9110b3e059521361e5fa813b9b..02cc684f2ce44e2f61377678aaffb68759eb222e 100644 (file)
@@ -3,13 +3,13 @@ LDFLAGS = -g
 
 ISODELIB=@ISODELIB@
 COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a
-DBMLIB=
 
 all::
 
-KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB)
+KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB)
+DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB)
 
-sclient: sclient.o
+sclient: sclient.o $(DEPKLIB)
        $(CC) $(CFLAGS) -o sclient sclient.o $(KLIB) $(LIBS)
 
 sclient.o:     $(srcdir)/sclient.c
diff --git a/src/appl/sample/sserver/ChangeLog b/src/appl/sample/sserver/ChangeLog
new file mode 100644 (file)
index 0000000..3ade1b3
--- /dev/null
@@ -0,0 +1,4 @@
+Wed Sep 28 23:49:10 1994  Theodore Y. Ts'o  (tytso@dcl)
+
+       * Makefile.in: Relink executable when library changes.
+
index 57976bc6f156bf03c07ada85acdfea55fe0845a8..84f0ff7809eaa20da0daa84b5a12f20eeba647e4 100644 (file)
@@ -3,13 +3,13 @@ LDFLAGS = -g
 
 ISODELIB=@ISODELIB@
 COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a
-DBMLIB=
 
 all::
 
-KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB)
+KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) 
+DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB) 
 
-sserver: sserver.o
+sserver: sserver.o $(DEPKLIB)
        $(CC) $(CFLAGS) -o sserver sserver.o $(KLIB) $(LIBS)
 
 sserver.o:     $(srcdir)/sserver.c
index f07594cd5270ff64789b99daa28030e690b8b8ef..bf5c57096432b44772e02a4c21b1b63713d17829 100644 (file)
@@ -1,3 +1,7 @@
+Thu Sep 29 00:03:59 1994  Theodore Y. Ts'o  (tytso@dcl)
+
+       * Makefile.in: Relink executable when library changes.
+
 Wed Sep 21 17:40:56 1994  Theodore Y. Ts'o  (tytso@dcl)
 
        * kdc_util.c, kdc_util.h (realm_compare): Change realm_compare so
index 3fa4e6c24a6fe8312dffefe05c2c0e8af0904b01..e5de9eeb2f871746f2623acc46b74d2d3c95ef74 100644 (file)
@@ -10,6 +10,7 @@ DBMLIB=
 KDBLIB=$(TOPLIBD)/libkdb5.a 
 
 KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB)
+DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB) $(DBMLIB)
 
 KRB4INCLUDES=-I$(SRCTOP)/include/kerberosIV