summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/gssapi/generic/Makefile.in4
-rw-r--r--src/lib/krb5/krb/Makefile.in3
-rw-r--r--src/lib/krb5/os/Makefile.in2
-rw-r--r--src/plugins/kdb/db2/Makefile.in2
-rw-r--r--src/tests/Makefile.in3
-rw-r--r--src/tests/gssapi/Makefile.in2
-rw-r--r--src/util/support/Makefile.in2
7 files changed, 11 insertions, 7 deletions
diff --git a/src/lib/gssapi/generic/Makefile.in b/src/lib/gssapi/generic/Makefile.in
index 16069f1383..39e5150363 100644
--- a/src/lib/gssapi/generic/Makefile.in
+++ b/src/lib/gssapi/generic/Makefile.in
@@ -144,10 +144,10 @@ win-create-ehdrdir:
clean-unix:: clean-libobjs
$(RM) $(ETHDRS) $(ETSRCS) $(HDRS) $(EXPORTED_BUILT_HEADERS) \
- $(EHDRDIR)$(S)timestamp errmap.h
+ $(EHDRDIR)$(S)timestamp errmap.h maptest.h
clean-windows::
- $(RM) $(HDRS)
+ $(RM) $(HDRS) maptest.h
-if exist $(EHDRDIR)\nul rmdir $(EHDRDIR)
generate-files-mac: gssapi.h errmap.h
diff --git a/src/lib/krb5/krb/Makefile.in b/src/lib/krb5/krb/Makefile.in
index 0da6a269b3..537d717777 100644
--- a/src/lib/krb5/krb/Makefile.in
+++ b/src/lib/krb5/krb/Makefile.in
@@ -487,6 +487,9 @@ clean::
$(OUTPRE)t_pac$(EXEEXT) $(OUTPRE)t_pac.$(OBJEXT) \
$(OUTPRE)t_princ$(EXEEXT) $(OUTPRE)t_princ.$(OBJEXT) \
$(OUTPRE)t_authdata$(EXEEXT) $(OUTPRE)t_authdata.$(OBJEXT) \
+ $(OUTPRE)t_cc_config$(EXEEXT) $(OUTPRE)t_cc_config.$(OBJEXT) \
+ $(OUTPRE)t_in_ccache$(EXEEXT) $(OUTPRE)t_in_ccache.$(OBJEXT) \
+ $(OUTPRE)t_ad_fx_armor$(EXEEXT) $(OUTPRE)t_ad_fx_armor.$(OBJEXT) \
$(OUTPRE)t_vfy_increds$(EXEEXT) $(OUTPRE)t_vfy_increds.$(OBJEXT) \
$(OUTPRE)t_response_items$(EXEEXT) $(OUTPRE)t_response_items.$(OBJEXT)
diff --git a/src/lib/krb5/os/Makefile.in b/src/lib/krb5/os/Makefile.in
index 1db7cf160a..0ffbe08dc4 100644
--- a/src/lib/krb5/os/Makefile.in
+++ b/src/lib/krb5/os/Makefile.in
@@ -284,7 +284,7 @@ check-unix-expand:: t_expand_path
clean::
$(RM) $(TEST_PROGS) test.out t_std_conf.o t_an_to_ln.o t_locate_kdc.o
- $(RM) t_kuserok.o
+ $(RM) t_kuserok.o t_trace.o t_expand_path.o
@libobj_frag@
diff --git a/src/plugins/kdb/db2/Makefile.in b/src/plugins/kdb/db2/Makefile.in
index ef19559429..6dd9e2ef5b 100644
--- a/src/plugins/kdb/db2/Makefile.in
+++ b/src/plugins/kdb/db2/Makefile.in
@@ -78,7 +78,7 @@ $(DB_DEPS) $(DBOBJLISTS-k5) $(DBSHOBJLISTS): all-recurse
# $(CC) -shared -o $@ -L$(TOPLIBD) $^ -ldb $(SHLIB_EXPLIBS)
clean::
- $(RM) lib$(LIBBASE)$(SO_EXT) db2_exp.o
+ $(RM) lib$(LIBBASE)$(SO_EXT) db2_exp.o .depend-verify-db
@libnover_frag@
@libobj_frag@
diff --git a/src/tests/Makefile.in b/src/tests/Makefile.in
index 92d8d6889b..32bc0b716d 100644
--- a/src/tests/Makefile.in
+++ b/src/tests/Makefile.in
@@ -8,6 +8,7 @@ KRB5_RUN_ENV= @KRB5_RUN_ENV@
PROG_LIBPATH=-L$(TOPLIBD)
PROG_RPATH=$(KRB5_LIBDIR)
+OBJS= gcred.o hist.o kdbtest.o
EXTRADEPSRCS= gcred.c hist.c kdbtest.c
TEST_DB = ./testdb
@@ -97,5 +98,5 @@ check-pytests:: gcred hist kdbtest
$(RUNPYTEST) $(srcdir)/t_cve-2012-1015.py $(PYTESTFLAGS)
clean::
- $(RM) krb5.conf kdc.conf
+ $(RM) gcred hist kdbtest krb5.conf kdc.conf
$(RM) -rf kdc_realm/sandbox ldap
diff --git a/src/tests/gssapi/Makefile.in b/src/tests/gssapi/Makefile.in
index 36e9d53c90..56202345ab 100644
--- a/src/tests/gssapi/Makefile.in
+++ b/src/tests/gssapi/Makefile.in
@@ -14,7 +14,7 @@ SRCS= $(srcdir)/t_accname.c $(srcdir)/t_ccselect.c $(srcdir)/t_credstore.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_namingexts.o t_s4u.o \
+ t_inq_cred.o t_inq_mechs_name.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)
diff --git a/src/util/support/Makefile.in b/src/util/support/Makefile.in
index 74baf4b37d..2eb4e6ae9b 100644
--- a/src/util/support/Makefile.in
+++ b/src/util/support/Makefile.in
@@ -218,7 +218,7 @@ check-unix:: $(TEST_PROGS)
clean::
$(RM) t_k5buf.o t_k5buf t_unal.o t_unal path_win.o path_win
$(RM) t_path_win.o t_path_win t_path.o t_path t_base64.o t_base64
- $(RM) libkrb5support.exports
+ $(RM) t_json.o t_json libkrb5support.exports
@lib_frag@
@libobj_frag@