From 7b8fae6b1eb88d5a3ea7c51ab406fa7afb7f95e5 Mon Sep 17 00:00:00 2001 From: Eric J Korpela Date: Wed, 3 Apr 2013 09:56:25 -0700 Subject: [PATCH] Fix for "make clean" not removing .a files in lib/ --- lib/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Makefile.am b/lib/Makefile.am index 17aaa8695c..8591b24042 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -200,6 +200,9 @@ $(LIBBOINC_FCGI_STATIC): libboinc_fcgi.la rm -f $(LIBBOINC_FCGI_STATIC) $(LN) .libs/$(LIBBOINC_FCGI_STATIC) . +clean: clean-am + rm -f $(LIBBOINC_STATIC) $(LIBBOINC_CRYPT_STATIC) $(LIBBOINC_FCGI_STATIC) + endif # end of "if ENABLE_LIBRARIES"