commit 97abb39d972aa5f7f5b6c9e9a458f14e2190f7ef
parent ad5af2eaf1a316df0e248cc01243405f4e6a28e7
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Mon, 15 Dec 2025 16:43:14 +0100
Small update to the "clean" target in the makefile
Removal of a temporary file created by a test.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -117,7 +117,6 @@ uninstall:
clean: clean_test
rm -f $(OBJ) $(DEP) $(LIBNAME)
rm -f .config libshtr.o shtr.pc shtr-local.pc
- rm -f test_isotope_metadata.txt
lint:
@@ -166,6 +165,7 @@ test_shtr_lines \
clean_test:
rm -f $(TEST_DEP) $(TEST_OBJ) $(TEST_TGT)
+ rm -f test_isotope_metadata.txt test_lines.txt
for i in $(TEST_SRC); do rm -f "$$(basename "$${i}" ".c")"; done
test: tests