From: Tom Yu Date: Wed, 4 Sep 1996 23:31:33 +0000 (+0000) Subject: * Makefile.in (t_kdb): Fix up dependencies of t_kdb so it will X-Git-Tag: krb5-1.0-beta7~62 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=1ed3cc8b862df3248e451bd2d95c5820a682e6bd;p=krb5.git * Makefile.in (t_kdb): Fix up dependencies of t_kdb so it will build on non-shared architectures; also ensure that libs get linked after the objects. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9026 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/kdb/ChangeLog b/src/lib/kdb/ChangeLog index 3b961f336..7c0d3f186 100644 --- a/src/lib/kdb/ChangeLog +++ b/src/lib/kdb/ChangeLog @@ -1,3 +1,9 @@ +Wed Sep 4 19:29:57 1996 Tom Yu + + * Makefile.in (t_kdb): Fix up dependencies of t_kdb so it will + build on non-shared architectures; also ensure that libs + get linked after the objects. + Fri Aug 23 16:34:45 1996 Theodore Ts'o * Makefile.in (t_kdb): Fix Makefile so that t_kdb is linked diff --git a/src/lib/kdb/Makefile.in b/src/lib/kdb/Makefile.in index d0700d163..51eaf39cf 100644 --- a/src/lib/kdb/Makefile.in +++ b/src/lib/kdb/Makefile.in @@ -67,8 +67,8 @@ libkdb5.$(STEXT): $(OBJS) clean:: $(RM) libkdb5.a DONE -t_kdb: t_kdb.o $(DEPLIBS) $(OBJS) $(TOPLIBD)/libdb.a - $(LD) $(LDFLAGS) $(LDARGS) -o t_kdb t_kdb.o $(LIBS) $(OBJS) -ldb +t_kdb: t_kdb.o $(OBJS) $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(TOPLIBD)/libcom_err.a $(TOPLIBD)/libdb.a + $(LD) $(LDFLAGS) $(LDARGS) -o t_kdb t_kdb.o $(OBJS) $(LIBS) -ldb check:: t_kdb $(KRB5_RUN_ENV) ./t_kdb -tcv