From f91584a7bc02c88fccabc61444d2f0d962fbbad4 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 12 Nov 2018 00:56:54 -0500 Subject: [PATCH] Remove a.out artifacts on OS X during clean (GH #738) --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 6b8274b2..1cbf2d62 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -1130,9 +1130,9 @@ clean: @-$(RM) libcryptopp.so libcryptopp.so$(SOLIB_COMPAT_SUFFIX) libcryptopp.so$(SOLIB_VERSION_SUFFIX) @-$(RM) cryptest.exe dlltest.exe cryptest.import.exe cryptest.info ct et @-$(RM) *.la *.lo *.gcov *.gcno *.gcda *.stackdump core core-* - @-$(RM) /tmp/adhoc.exe + @-$(RM) a.out /tmp/adhoc.exe @-$(RM) -r /tmp/cryptopp_test/ - @-$(RM) -r *.exe.dSYM/ *.dylib.dSYM/ + @-$(RM) -r *.exe.dSYM/ *.dylib.dSYM/ *.out.dSYM/ @-$(RM) -r cov-int/ .PHONY: autotools-clean