diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/tests/Makefile.am | 5 | ||||
-rw-r--r-- | cpp/src/tests/ssl.mk | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/cpp/src/tests/Makefile.am b/cpp/src/tests/Makefile.am index b392a124d1..9a0fac9bbb 100644 --- a/cpp/src/tests/Makefile.am +++ b/cpp/src/tests/Makefile.am @@ -41,6 +41,7 @@ TESTS= EXTRA_DIST= CLEANFILES= LONG_TESTS= +CLEAN_LOCAL= # # Destination for intalled programs and tests defined here @@ -396,7 +397,9 @@ sasl_config: sasl_test_setup.sh sh $(srcdir)/sasl_test_setup.sh touch sasl_config +CLEAN_LOCAL += sasl_config + clean-local: - rm -rf sasl_config + rm -rf $(CLEAN_LOCAL) include testagent.mk diff --git a/cpp/src/tests/ssl.mk b/cpp/src/tests/ssl.mk index cb887c8fda..435db0c55b 100644 --- a/cpp/src/tests/ssl.mk +++ b/cpp/src/tests/ssl.mk @@ -19,5 +19,4 @@ TESTS+=ssl_test EXTRA_DIST+=ssl_test -clean-local: - rm -rf test_cert_db cert.password
\ No newline at end of file +CLEAN_LOCAL += test_cert_db cert.password |