diff options
| author | Theodore Tso <tytso@mit.edu> | 1994-09-30 02:57:06 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1994-09-30 02:57:06 +0000 |
| commit | f84c8f9ec86812fce06f75d7136a4444df0bca29 (patch) | |
| tree | 05969240af469a7c0768cb6adcdbddbca2650096 /src/appl/telnet | |
| parent | ccfaefdf174943379ddd8e9aa8a139a8d7d70c8e (diff) | |
Relink executable if libraries change
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4400 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl/telnet')
| -rw-r--r-- | src/appl/telnet/telnet/ChangeLog | 4 | ||||
| -rw-r--r-- | src/appl/telnet/telnet/Makefile.in | 3 | ||||
| -rw-r--r-- | src/appl/telnet/telnetd/ChangeLog | 4 | ||||
| -rw-r--r-- | src/appl/telnet/telnetd/Makefile.in | 3 |
4 files changed, 12 insertions, 2 deletions
diff --git a/src/appl/telnet/telnet/ChangeLog b/src/appl/telnet/telnet/ChangeLog index 67f2de9ed..720d6c47c 100644 --- a/src/appl/telnet/telnet/ChangeLog +++ b/src/appl/telnet/telnet/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 29 22:51:39 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: Relink executables if libraries change + Tue Aug 16 18:07:54 1994 Mark Eichin (eichin@cygnus.com) * externs.h: don't hide termdata under defined(unix). diff --git a/src/appl/telnet/telnet/Makefile.in b/src/appl/telnet/telnet/Makefile.in index 40f5b16dd..ab4d93931 100644 --- a/src/appl/telnet/telnet/Makefile.in +++ b/src/appl/telnet/telnet/Makefile.in @@ -28,6 +28,7 @@ ARPA_TELNET= $(srcdir)/../arpa/telnet.h COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a K4LIB = $(KRB4)/lib/libkrb.a KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) +DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB) SRCS= commands.c main.c network.c ring.c \ sys_bsd.c telnet.c terminal.c \ @@ -41,7 +42,7 @@ OBJS= authenc.o commands.o main.o network.o ring.o sys_bsd.o \ all:: telnet -telnet: $(OBJS) +telnet: $(OBJS) $(DEPKLIB) $(CC) -o $@ $(CFLAGS) $(OBJS) ../libtelnet/libtelnet.a $(KLIB) $(LIBS) clean:: diff --git a/src/appl/telnet/telnetd/ChangeLog b/src/appl/telnet/telnetd/ChangeLog index 81a01d043..be2e674e3 100644 --- a/src/appl/telnet/telnetd/ChangeLog +++ b/src/appl/telnet/telnetd/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 29 22:51:52 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: Relink executables if libraries change + Tue Aug 16 18:04:58 1994 Mark Eichin (eichin@tweedledumber.cygnus.com) * configure.in: check for vhangup. diff --git a/src/appl/telnet/telnetd/Makefile.in b/src/appl/telnet/telnetd/Makefile.in index ed2d7de2b..e883d1f8b 100644 --- a/src/appl/telnet/telnetd/Makefile.in +++ b/src/appl/telnet/telnetd/Makefile.in @@ -28,6 +28,7 @@ ARPA_TELNET= $(srcdir)/../arpa/telnet.h COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a K4LIB = $(KRB4)/lib/libkrb.a KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) +DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB) SRCS= $(srcdir)/telnetd.c \ $(srcdir)/state.c \ @@ -50,7 +51,7 @@ OBJS= telnetd.o \ all:: telnetd -telnetd: $(OBJS) +telnetd: $(OBJS) $(DEPKLIB) $(CC) -o $@ $(CFLAGS) $(OBJS) ../libtelnet/libtelnet.a $(KLIB) $(LIBS) clean:: |
