From eaf903f993094af27958b9935635710ffbf42bf6 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 22 Nov 2013 16:24:41 +0100 Subject: [PATCH] Clean more aggressively --- Makefile.lib | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.lib b/Makefile.lib index 1aec37c76..5d9910e35 100644 --- a/Makefile.lib +++ b/Makefile.lib @@ -30,7 +30,7 @@ define LIBS_template = include $$(wildcard $$(_d)/*.dep) - clean_list += $$(_lib) $$(_objs) $$(_d)*.dep + clean_list += $$(_d)*.a $$(_d)*.o $$(_d)*.dep libs_list += $$(_lib) endef @@ -50,7 +50,7 @@ define PROGRAMS_template = # Propagate CXXFLAGS to the individual object files. $$(foreach obj, $$(_objs), $$(eval $$(obj)_CXXFLAGS=$$($(1)_CXXFLAGS))) - clean_list += $$(_prog) $$(_objs) $$(_d)*.dep + clean_list += $$(_prog) $$(_d)*.o $$(_d)*.dep programs_list += $$(_prog) endef