From: Theodore Tso Date: Thu, 29 Sep 1994 04:04:56 +0000 (+0000) Subject: Relink executable when library changes X-Git-Tag: krb5-1.0-beta4.3~79 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=45bff501fdd072094e95cfc7cc56d554c0ccb1cf;p=krb5.git Relink executable when library changes git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4373 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/appl/sample/sclient/ChangeLog b/src/appl/sample/sclient/ChangeLog new file mode 100644 index 000000000..2b5888299 --- /dev/null +++ b/src/appl/sample/sclient/ChangeLog @@ -0,0 +1,5 @@ +Wed Sep 28 23:09:00 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: Relink executable when library chages. + + diff --git a/src/appl/sample/sclient/Makefile.in b/src/appl/sample/sclient/Makefile.in index 01c07429f..02cc684f2 100644 --- a/src/appl/sample/sclient/Makefile.in +++ b/src/appl/sample/sclient/Makefile.in @@ -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 index 000000000..3ade1b340 --- /dev/null +++ b/src/appl/sample/sserver/ChangeLog @@ -0,0 +1,4 @@ +Wed Sep 28 23:49:10 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: Relink executable when library changes. + diff --git a/src/appl/sample/sserver/Makefile.in b/src/appl/sample/sserver/Makefile.in index 57976bc6f..84f0ff780 100644 --- a/src/appl/sample/sserver/Makefile.in +++ b/src/appl/sample/sserver/Makefile.in @@ -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 diff --git a/src/kdc/ChangeLog b/src/kdc/ChangeLog index f07594cd5..bf5c57096 100644 --- a/src/kdc/ChangeLog +++ b/src/kdc/ChangeLog @@ -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 diff --git a/src/kdc/Makefile.in b/src/kdc/Makefile.in index 3fa4e6c24..e5de9eeb2 100644 --- a/src/kdc/Makefile.in +++ b/src/kdc/Makefile.in @@ -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