summaryrefslogtreecommitdiffstats
path: root/src/appl/user_user
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1994-09-30 02:57:06 +0000
committerTheodore Tso <tytso@mit.edu>1994-09-30 02:57:06 +0000
commitf84c8f9ec86812fce06f75d7136a4444df0bca29 (patch)
tree05969240af469a7c0768cb6adcdbddbca2650096 /src/appl/user_user
parentccfaefdf174943379ddd8e9aa8a139a8d7d70c8e (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/user_user')
-rw-r--r--src/appl/user_user/ChangeLog4
-rw-r--r--src/appl/user_user/Makefile.in5
2 files changed, 7 insertions, 2 deletions
diff --git a/src/appl/user_user/ChangeLog b/src/appl/user_user/ChangeLog
index 24d6af7b9..012e7901f 100644
--- a/src/appl/user_user/ChangeLog
+++ b/src/appl/user_user/ChangeLog
@@ -1,3 +1,7 @@
+Thu Sep 29 22:48:20 1994 Theodore Y. Ts'o (tytso@dcl)
+
+ * Makefile.in: Relink executable when libraries change
+
Wed Sep 14 21:47:00 1994 Theodore Y. Ts'o (tytso@dcl)
* Makefile.in: Fixed stupid typo (uusrever) in the install target.
diff --git a/src/appl/user_user/Makefile.in b/src/appl/user_user/Makefile.in
index c0a5094db..cc7feb523 100644
--- a/src/appl/user_user/Makefile.in
+++ b/src/appl/user_user/Makefile.in
@@ -8,8 +8,9 @@ DBMLIB=
all::
KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB)
+DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB) $(DBMLIB)
-uuclient: client.o
+uuclient: client.o $(DEPKLIB)
$(CC) $(CFLAGS) -o uuclient client.o $(KLIB) $(LIBS)
client.o: $(srcdir)/client.c
@@ -20,7 +21,7 @@ all:: uuclient
clean::
$(RM) client.o uuclient
-uuserver: server.o
+uuserver: server.o $(DEPKLIB)
$(CC) $(CFLAGS) -o uuserver server.o $(KLIB) $(LIBS)
server.o: $(srcdir)/server.c