]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Add missing entries to tests/gssapi Makefile.in
authorGreg Hudson <ghudson@mit.edu>
Tue, 8 Oct 2013 16:35:51 +0000 (12:35 -0400)
committerGreg Hudson <ghudson@mit.edu>
Tue, 15 Oct 2013 03:52:51 +0000 (23:52 -0400)
Some test sources files, objects, or programs were missing from SRCS,
OBJS, all, check-pytests, or clean.  t_oid was also out of order in a
couple of places.

src/tests/gssapi/Makefile.in
src/tests/gssapi/deps

index b40e5b84700640af7205c8f9dce7fa94f5ebfba3..5f554e19b844df903f6eb23b1ca397d796fccd5a 100644 (file)
@@ -2,31 +2,33 @@ mydir=tests$(S)gssapi
 BUILDTOP=$(REL)..$(S)..
 DEFINES = -DUSE_AUTOCONF_H
 
-SRCS=  $(srcdir)/t_accname.c $(srcdir)/t_ccselect.c $(srcdir)/t_credstore.c \
-       $(srcdir)/t_export_cred.c $(srcdir)/t_export_name.c \
-       $(srcdir)/t_gssexts.c $(srcdir)/t_imp_cred.c $(srcdir)/t_imp_name.c \
-       $(srcdir)/t_inq_cred.c $(srcdir)/t_inq_mechs_name.c $(srcdir)/t_iov.c \
-       $(srcdir)/t_namingexts.c $(srcdir)/t_s4u.c \
+SRCS=  $(srcdir)/ccinit.c $(srcdir)/ccrefresh.c $(srcdir)/common.c \
+       $(srcdir)/t_accname.c $(srcdir)/t_ccselect.c $(srcdir)/t_credstore.c \
+       $(srcdir)/t_enctypes.c $(srcdir)/t_export_cred.c \
+       $(srcdir)/t_export_name.c $(srcdir)/t_gssexts.c \
+       $(srcdir)/t_imp_cred.c $(srcdir)/t_imp_name.c $(srcdir)/t_inq_cred.c \
+       $(srcdir)/t_inq_mechs_name.c $(srcdir)/t_iov.c \
+       $(srcdir)/t_namingexts.c $(srcdir)/t_oid.c $(srcdir)/t_s4u.c \
        $(srcdir)/t_s4u2proxy_krb5.c $(srcdir)/t_saslname.c \
        $(srcdir)/t_spnego.c
 
 OBJS=  ccinit.o ccrefresh.o common.o t_accname.o t_ccselect.o t_credstore.o \
-       t_export_cred.o t_export_name.o t_gssexts.o t_imp_cred.o t_imp_name.o \
-       t_inq_cred.o t_inq_mechs_name.o t_iov.o t_namingexts.o t_oid.o \
-       t_s4u.o t_s4u2proxy_krb5.o t_saslname.o t_spnego.o
+       t_enctypes.o t_export_cred.o t_export_name.o t_gssexts.o t_imp_cred.o \
+       t_imp_name.o t_inq_cred.o t_inq_mechs_name.o t_iov.o t_namingexts.o \
+       t_oid.o t_s4u.o t_s4u2proxy_krb5.o t_saslname.o t_spnego.o
 
 COMMON_DEPS= common.o $(GSS_DEPLIBS) $(KRB5_BASE_DEPLIBS)
 COMMON_LIBS= common.o $(GSS_LIBS) $(KRB5_BASE_LIBS)
 
 all:: ccinit ccrefresh t_accname t_ccselect t_credstore t_enctypes \
        t_export_cred t_export_name t_gssexts t_imp_cred t_imp_name \
-       t_inq_cred t_inq_mechs_name t_iov t_namingexts t_s4u t_s4u2proxy_krb5 \
-       t_saslname t_spnego t_oid
+       t_inq_cred t_inq_mechs_name t_iov t_namingexts t_oid t_s4u \
+       t_s4u2proxy_krb5 t_saslname t_spnego
 
 check-unix:: t_oid
        $(RUN_SETUP) $(VALGRIND) ./t_oid
 
-check-pytests:: ccinit ccrefresh t_accname t_ccselect t_credstore \
+check-pytests:: ccinit ccrefresh t_accname t_ccselect t_credstore t_enctypes \
        t_export_cred t_export_name t_imp_cred t_inq_cred t_inq_mechs_name \
        t_iov t_s4u t_s4u2proxy_krb5 t_spnego
        $(RUNPYTEST) $(srcdir)/t_gssapi.py $(PYTESTFLAGS)
@@ -66,6 +68,8 @@ t_iov: t_iov.o $(COMMON_DEPS)
        $(CC_LINK) -o $@ t_iov.o $(COMMON_LIBS)
 t_namingexts: t_namingexts.o $(COMMON_DEPS)
        $(CC_LINK) -o $@ t_namingexts.o $(COMMON_LIBS)
+t_oid: t_oid.o $(COMMON_DEPS)
+       $(CC_LINK) -o $@ t_oid.o $(COMMON_LIBS)
 t_s4u: t_s4u.o $(COMMON_DEPS)
        $(CC_LINK) -o $@ t_s4u.o $(COMMON_LIBS)
 t_s4u2proxy_krb5: t_s4u2proxy_krb5.o $(COMMON_DEPS)
@@ -74,11 +78,9 @@ t_saslname: t_saslname.o $(COMMON_DEPS)
        $(CC_LINK) -o $@ t_saslname.o $(COMMON_LIBS)
 t_spnego: t_spnego.o $(COMMON_DEPS)
        $(CC_LINK) -o $@ t_spnego.o $(COMMON_LIBS)
-t_oid: t_oid.o $(COMMON_DEPS)
-       $(CC_LINK) -o $@ t_oid.o $(COMMON_LIBS)
 
 clean::
-       $(RM) ccinit ccrefresh t_accname t_ccselect t_credstore t_export_cred \
-       $(RM) t_export_name t_gssexts t_imp_cred t_imp_name t_inq_cred
-       $(RM) t_inq_mechs_name t_namingexts t_s4u t_s4u2proxy_krb5 t_saslname
-       $(RM) t_spnego t_oid
+       $(RM) ccinit ccrefresh t_accname t_ccselect t_credstore t_enctypes
+       $(RM) t_export_cred t_export_name t_gssexts t_imp_cred t_imp_name
+       $(RM) t_inq_cred t_inq_mechs_name t_iov t_namingexts t_oid t_s4u
+       $(RM) t_s4u2proxy_krb5 t_saslname t_spnego
index 2e74a2acaac367322488ac380bcea379096824a0..e7b6a355b39b1af9bffc0e6305543b42bd7234f6 100644 (file)
@@ -1,6 +1,30 @@
 #
 # Generated makefile dependencies follow.
 #
+$(OUTPRE)ccinit.$(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/port-sockets.h \
+  $(top_srcdir)/include/socket-utils.h ccinit.c
+$(OUTPRE)ccrefresh.$(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/port-sockets.h \
+  $(top_srcdir)/include/socket-utils.h ccrefresh.c
+$(OUTPRE)common.$(OBJEXT): $(BUILDTOP)/include/gssapi/gssapi.h \
+  $(BUILDTOP)/include/gssapi/gssapi_ext.h $(BUILDTOP)/include/gssapi/gssapi_krb5.h \
+  $(BUILDTOP)/include/krb5/krb5.h $(COM_ERR_DEPS) $(top_srcdir)/include/krb5.h \
+  common.c common.h
 $(OUTPRE)t_accname.$(OBJEXT): $(BUILDTOP)/include/gssapi/gssapi.h \
   $(BUILDTOP)/include/gssapi/gssapi_ext.h $(BUILDTOP)/include/gssapi/gssapi_krb5.h \
   $(BUILDTOP)/include/krb5/krb5.h $(COM_ERR_DEPS) $(top_srcdir)/include/krb5.h \
@@ -13,6 +37,18 @@ $(OUTPRE)t_credstore.$(OBJEXT): $(BUILDTOP)/include/gssapi/gssapi.h \
   $(BUILDTOP)/include/gssapi/gssapi_ext.h $(BUILDTOP)/include/gssapi/gssapi_krb5.h \
   $(BUILDTOP)/include/krb5/krb5.h $(COM_ERR_DEPS) $(top_srcdir)/include/krb5.h \
   common.h t_credstore.c
+$(OUTPRE)t_enctypes.$(OBJEXT): $(BUILDTOP)/include/autoconf.h \
+  $(BUILDTOP)/include/gssapi/gssapi.h $(BUILDTOP)/include/gssapi/gssapi_ext.h \
+  $(BUILDTOP)/include/gssapi/gssapi_krb5.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/port-sockets.h $(top_srcdir)/include/socket-utils.h \
+  common.h t_enctypes.c
 $(OUTPRE)t_export_cred.$(OBJEXT): $(BUILDTOP)/include/gssapi/gssapi.h \
   $(BUILDTOP)/include/gssapi/gssapi_ext.h $(BUILDTOP)/include/gssapi/gssapi_krb5.h \
   $(BUILDTOP)/include/krb5/krb5.h $(COM_ERR_DEPS) $(top_srcdir)/include/krb5.h \
@@ -51,6 +87,10 @@ $(OUTPRE)t_namingexts.$(OBJEXT): $(BUILDTOP)/include/gssapi/gssapi.h \
   $(BUILDTOP)/include/gssapi/gssapi_ext.h $(BUILDTOP)/include/gssapi/gssapi_krb5.h \
   $(BUILDTOP)/include/krb5/krb5.h $(COM_ERR_DEPS) $(top_srcdir)/include/krb5.h \
   common.h t_namingexts.c
+$(OUTPRE)t_oid.$(OBJEXT): $(BUILDTOP)/include/gssapi/gssapi.h \
+  $(BUILDTOP)/include/gssapi/gssapi_ext.h $(BUILDTOP)/include/gssapi/gssapi_krb5.h \
+  $(BUILDTOP)/include/krb5/krb5.h $(COM_ERR_DEPS) $(top_srcdir)/include/krb5.h \
+  common.h t_oid.c
 $(OUTPRE)t_s4u.$(OBJEXT): $(BUILDTOP)/include/gssapi/gssapi.h \
   $(BUILDTOP)/include/gssapi/gssapi_ext.h $(BUILDTOP)/include/gssapi/gssapi_krb5.h \
   $(BUILDTOP)/include/krb5/krb5.h $(COM_ERR_DEPS) $(top_srcdir)/include/krb5.h \