From c422a9172a7bdf0809b14b93f07a234958f4062b Mon Sep 17 00:00:00 2001 From: Libin Lu Date: Wed, 3 Jul 2024 15:38:18 -0400 Subject: [PATCH] =?UTF-8?q?=C2=96add=20spreadtestndall[f]=20to=20make=20cl?= =?UTF-8?q?ean?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index f9348f716..b63603781 100644 --- a/makefile +++ b/makefile @@ -467,7 +467,7 @@ ifneq ($(MINGW),ON) rm -f $(STATICLIB) $(DYNLIB) rm -f matlab/*.mex* rm -f $(TESTS) test/results/*.out perftest/results/*.out - rm -f $(EXAMPLES) $(FE) $(ST) $(STF) $(GTT) $(GTTF) + rm -f $(EXAMPLES) $(FE) $(ST) $(STF) $(STA) $(STAF) $(GTT) $(GTTF) rm -f perftest/manysmallprobs rm -f examples/core test/core perftest/core $(FE_DIR)/core else @@ -476,7 +476,7 @@ else del matlab\*.mex* for %%f in ($(subst /,\, $(TESTS))) do ((if exist %%f del %%f) & (if exist %%f.exe del %%f.exe)) del test\results\*.out perftest\results\*.out - for %%f in ($(subst /,\, $(EXAMPLES)), $(subst /,\,$(FE)), $(subst /,\,$(ST)), $(subst /,\,$(STF)), $(subst /,\,$(GTT)), $(subst /,\,$(GTTF))) do ((if exist %%f del %%f) & (if exist %%f.exe del %%f.exe)) + for %%f in ($(subst /,\, $(EXAMPLES)), $(subst /,\,$(FE)), $(subst /,\,$(ST)), $(subst /,\,$(STF)), $(subst /,\,$(STA)), $(subst /,\,$(STAF)), $(subst /,\,$(GTT)), $(subst /,\,$(GTTF))) do ((if exist %%f del %%f) & (if exist %%f.exe del %%f.exe)) del perftest\manysmallprobs del examples\core, test\core, perftest\core, $(subst /,\, $(FE_DIR))\core endif