From: Ezra Peisach Date: Sun, 6 Mar 2011 13:29:05 +0000 (+0000) Subject: On make clean remove test programs and object files. In lib/krb5/krb X-Git-Tag: krb5-1.10-alpha1~549 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=14729219149ebd7a0f2016284c5f9738c762e6fc;p=krb5.git On make clean remove test programs and object files. In lib/krb5/krb make depend as a test program was missed from the source list. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24687 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/crypto/builtin/sha2/Makefile.in b/src/lib/crypto/builtin/sha2/Makefile.in index da176e66d..ffb9b7480 100644 --- a/src/lib/crypto/builtin/sha2/Makefile.in +++ b/src/lib/crypto/builtin/sha2/Makefile.in @@ -36,7 +36,7 @@ check-unix:: t_sha256 $(RUN_SETUP) $(VALGRIND) $(C)t_sha256 clean:: - $(RM) t_sha256$(EXEEXT) t_sha256$(OBJEXT) + $(RM) t_sha256$(EXEEXT) t_sha256.$(OBJEXT) clean-unix:: clean-libobjs diff --git a/src/lib/crypto/krb/Makefile.in b/src/lib/crypto/krb/Makefile.in index d1c4605ea..81b55e449 100644 --- a/src/lib/crypto/krb/Makefile.in +++ b/src/lib/crypto/krb/Makefile.in @@ -201,6 +201,7 @@ t_fortuna: t_fortuna.o $(SUPPORT_DEPLIB) $(CRYPTO_DEPLIB) $(CC_LINK) -o t_fortuna t_fortuna.o $(K5CRYPTO_LIB) $(SUPPORT_LIB) clean-unix:: clean-libobjs + $(RM) t_fortuna.o t_fortuna t_fortuna.output @lib_frag@ @libobj_frag@ diff --git a/src/lib/krb5/krb/Makefile.in b/src/lib/krb5/krb/Makefile.in index b1af2e747..3bd380c9b 100644 --- a/src/lib/krb5/krb/Makefile.in +++ b/src/lib/krb5/krb/Makefile.in @@ -324,7 +324,8 @@ SRCS= $(srcdir)/addr_comp.c \ $(srcdir)/t_expand.c \ $(srcdir)/t_pac.c \ $(srcdir)/t_princ.c \ - $(srcdir)/t_etypes.c + $(srcdir)/t_etypes.c \ + $(srcdir)/t_expire_warn.c # Someday, when we have a "maintainer mode", do this right: BISON=bison @@ -442,6 +443,7 @@ clean:: $(OUTPRE)t_ser$(EXEEXT) $(OUTPRE)t_ser.$(OBJEXT) \ $(OUTPRE)t_deltat$(EXEEXT) $(OUTPRE)t_deltat.$(OBJEXT) \ $(OUTPRE)t_expand$(EXEEXT) $(OUTPRE)t_expand.$(OBJEXT) \ + $(OUTPRE)t_expire_warn$(EXEEXT) $(OUTPRE)t_expire_warn.$(OBJEXT) \ $(OUTPRE)t_etypes$(EXEEXT) $(OUTPRE)t_etypes.$(OBJEXT) \ $(OUTPRE)t_pac$(EXEEXT) $(OUTPRE)t_pac.$(OBJEXT) \ $(OUTPRE)t_princ$(EXEEXT) $(OUTPRE)t_princ.$(OBJEXT) \ diff --git a/src/lib/krb5/krb/deps b/src/lib/krb5/krb/deps index 5c5ed30ac..f216d6b68 100644 --- a/src/lib/krb5/krb/deps +++ b/src/lib/krb5/krb/deps @@ -1202,3 +1202,14 @@ t_etypes.so t_etypes.po $(OUTPRE)t_etypes.$(OBJEXT): \ $(top_srcdir)/include/krb5/authdata_plugin.h $(top_srcdir)/include/krb5/plugin.h \ $(top_srcdir)/include/krb5/preauth_plugin.h $(top_srcdir)/include/port-sockets.h \ $(top_srcdir)/include/socket-utils.h t_etypes.c +t_expire_warn.so t_expire_warn.po $(OUTPRE)t_expire_warn.$(OBJEXT): \ + $(BUILDTOP)/include/autoconf.h $(BUILDTOP)/include/krb5/krb5.h \ + $(BUILDTOP)/include/osconf.h $(BUILDTOP)/include/profile.h \ + $(COM_ERR_DEPS) $(top_srcdir)/include/k5-buf.h $(top_srcdir)/include/k5-err.h \ + $(top_srcdir)/include/k5-gmt_mktime.h $(top_srcdir)/include/k5-int-pkinit.h \ + $(top_srcdir)/include/k5-int.h $(top_srcdir)/include/k5-platform.h \ + $(top_srcdir)/include/k5-plugin.h $(top_srcdir)/include/k5-thread.h \ + $(top_srcdir)/include/k5-trace.h $(top_srcdir)/include/krb5.h \ + $(top_srcdir)/include/krb5/authdata_plugin.h $(top_srcdir)/include/krb5/plugin.h \ + $(top_srcdir)/include/krb5/preauth_plugin.h $(top_srcdir)/include/port-sockets.h \ + $(top_srcdir)/include/socket-utils.h t_expire_warn.c diff --git a/src/tests/gssapi/Makefile.in b/src/tests/gssapi/Makefile.in index 36b541732..fe6a78ba0 100644 --- a/src/tests/gssapi/Makefile.in +++ b/src/tests/gssapi/Makefile.in @@ -31,5 +31,6 @@ t_saslname: t_saslname.o $(GSS_DEPLIBS) $(KRB5_BASE_DEPLIBS) $(CC_LINK) -o t_saslname t_saslname.o $(GSS_LIBS) $(KRB5_BASE_LIBS) clean:: - $(RM) t_imp_name t_s4u t_namingexts t_gssexts t_spnego t_saslname + $(RM) t_accname t_imp_name t_s4u t_namingexts t_gssexts \ + t_spnego t_saslname