Add some missing files to .gitignore, EXTRADEPSRCS, and clean rules.
Makefile
OBJS.*
obj/
+skiptests
testdir/
testlog
/src/include/db.h
/src/include/gssapi/
/src/include/kadm5/
+/src/include/kdc_j_encode.h
/src/include/krb5.stamp
/src/include/osconf.h
/src/include/private-and-public-decls
/src/kadmin/dbutil/import_err.c
/src/kadmin/dbutil/import_err.h
/src/kadmin/dbutil/kdb5_util
+/src/kadmin/dbutil/t_tdumputil
/src/kadmin/ktutil/ktutil
/src/kadmin/ktutil/ktutil_ct.c
/src/lib/kdb/t_ulog
/src/lib/kdb/test.ulog
+/src/lib/krad/t_attr
+/src/lib/krad/t_attrset
+/src/lib/krad/t_client
+/src/lib/krad/t_code
+/src/lib/krad/t_packet
+/src/lib/krad/t_remote
+
+/src/lib/krb5/ccache/kcmrpc.c
+/src/lib/krb5/ccache/kcmrpc.h
/src/lib/krb5/ccache/t_cc
+/src/lib/krb5/ccache/t_cccol
/src/lib/krb5/ccache/t_cccursor
/src/lib/krb5/ccache/t_marshal
/src/lib/krb5/ccache/testcache
/src/slave/kproplog
/src/tests/adata
+/src/tests/au.log
/src/tests/etinfo
/src/tests/gcred
/src/tests/hist
/src/tests/responder
/src/tests/s2p
/src/tests/s4u2proxy
+/src/tests/unlockiter
/src/tests/asn.1/expected_encode.out
/src/tests/asn.1/expected_trval.out
/src/tests/gssapi/t_ccselect
/src/tests/gssapi/t_ciflags
/src/tests/gssapi/t_credstore
+/src/tests/gssapi/t_enctypes
+/src/tests/gssapi/t_err
/src/tests/gssapi/t_export_cred
/src/tests/gssapi/t_export_name
/src/tests/gssapi/t_gssexts
/src/tests/gssapi/t_invalid
/src/tests/gssapi/t_inq_cred
/src/tests/gssapi/t_inq_mechs_name
+/src/tests/gssapi/t_iov
/src/tests/gssapi/t_namingexts
/src/tests/gssapi/t_oid
/src/tests/gssapi/t_pcontok
clean-: clean-windows
clean-unix::
- $(RM) *.o core
+ $(RM) *.o core skiptests
mostlyclean: clean
clean-windows-mac:
rm -f $(CLEANUP)
-distclean-windows::
+distclean-windows:
config\rm.bat $(CLEANUP:^/=^\)
config\rm.bat $(WINMAKEFILES)
config\rm.bat $(KBINDIR)\*.dll $(KBINDIR)\*.exe
# $(PURE) or $(LDFLAGS) in case someone changes config/shlib.conf
check-unix: krb5-config
$(SHELL) $(srcdir)/t_krbconf
+
+distclean-unix:
+ $(RM) $(PKGCONFIG_FILES) krb5-config
$(RM) osconf.new $(BUILT_HEADERS)
distclean:
- $(RM) autoconf.h
+ $(RM) autoconf.h $(srcdir)/autoconf.stmp
install-headers-unix install: krb5/krb5.h profile.h
$(INSTALL_DATA) $(srcdir)/krb5.h $(DESTDIR)$(KRB5_INCDIR)$(S)krb5.h
SRCS = kdb5_util.c kdb5_create.c kadm5_create.c kdb5_destroy.c \
kdb5_stash.c import_err.c strtok.c dump.c ovload.c kdb5_mkey.c \
tabdump.c tdumputil.c
+EXTRADEPSRCS = t_tdumputil.c
OBJS = kdb5_util.o kdb5_create.o kadm5_create.o kdb5_destroy.o \
kdb5_stash.o import_err.o strtok.o dump.o ovload.o kdb5_mkey.o \
clean:
$(RM) $(PROG) $(OBJS) import_err.c import_err.h
+ $(RM) t_tdumputil.o t_tdumputil
T_TDUMPUTIL_OBJS = t_tdumputil.o tdumputil.o
done
clean-unix::
- $(RM) $(HDRS)
+ $(RM) -r $(HDRDIR)
all-prerecurse: includes
all-prerecurse: all-libobjs
clean-unix::
$(RM) t_cc t_cc.o t_cccursor t_cccursor.o t_cccol t_cccol.o
- $(RM) t_marshal t_marshal.o testcache
+ $(RM) t_marshal t_marshal.o testcache kcmrpc.c kcmrpc.h
depend: $(KCMRPC_DEPS)
all-unix: all-liblinks
install-unix: install-libs
-clean-unix:: clean-libs clean-libobjs
+clean-unix:: clean-liblinks clean-libs clean-libobjs
@libnover_frag@
@libobj_frag@
all-unix: all-libs
install-unix:
-clean-unix:: clean-libs clean-libobjs
+clean-unix:: clean-liblinks clean-libs clean-libobjs
@libnover_frag@
@libobj_frag@
all-unix: all-liblinks
install-unix: install-libs
-clean-unix:: clean-libs clean-libobjs
+clean-unix:: clean-liblinks clean-libs clean-libobjs
@libnover_frag@
@libobj_frag@
LC_ALL=C $(VALGRIND)
OBJS= adata.o etinfo.o gcred.o hist.o hooks.o hrealm.o icred.o kdbtest.o \
- localauth.o plugorder.o rdreq.o responder.o s2p.o s4u2proxy.o
+ localauth.o plugorder.o rdreq.o responder.o s2p.o s4u2proxy.o \
+ unlockiter.o
EXTRADEPSRCS= adata.c etinfo.c gcred.c hist.c hooks.c hrealm.c icred.c \
- kdbtest.c localauth.c plugorder.c rdreq.o responder.c s2p.c s4u2proxy.c
+ kdbtest.c localauth.c plugorder.c rdreq.o responder.c s2p.c \
+ s4u2proxy.c unlockiter.c
TEST_DB = ./testdb
TEST_REALM = FOO.TEST.REALM
clean:
$(RM) adata etinfo gcred hist hooks hrealm icred kdbtest localauth
- $(RM) plugorder rdreq responder s2p s4u2proxy krb5.conf kdc.conf
+ $(RM) plugorder rdreq responder s2p s4u2proxy unlockiter
+ $(RM) krb5.conf kdc.conf
$(RM) -rf kdc_realm/sandbox ldap
$(RM) au.log
install:
$(INSTALL_SCRIPT) $(srcdir)/krb5-send-pr.sh $(DESTDIR)$(ADMIN_BINDIR)/krb5-send-pr
+
+clean-unix::
+ $(RM) *.pyc