diff options
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makerules b/Makerules index 3a34da4150..359f6d1cc6 100644 --- a/Makerules +++ b/Makerules @@ -935,9 +935,12 @@ mostlyclean: common-mostlyclean # Remove the object files. common-mostlyclean: -rm -f $(addprefix $(objpfx),$(tests) $(test-srcs) $(others) \ + $(tests-static) \ $(addsuffix .o,$(tests) $(test-srcs) \ + $(tests-static) \ $(others)) \ - $(addsuffix .out,$(tests) $(test-srcs))) + $(addsuffix .out,$(tests) $(test-srcs)) \ + $(addsuffix .sout,$(tests-static))) -rm -f $(addprefix $(objpfx),$(extra-objs) $(install-lib) \ $(install-lib.so) \ $(install-lib.so:%.so=%_pic.a)) |