[hackers] [sbase] build: Remove all .o in clean || Roberto E. Vargas Caballero
commit ead2c4616a171a905dd0822be111e08947559d90
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.net>
AuthorDate: Wed Dec 31 16:15:53 2025 +0100
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.net>
CommitDate: Wed Dec 31 16:15:53 2025 +0100
build: Remove all .o in clean
Sometimes the OBJ variable gets out of sync with the object
files in the file system, and using a wildcard does a better
job in this regard.
diff --git a/Makefile b/Makefile
index 8ad541f..d77f1ac 100644
--- a/Makefile
+++ b/Makefile
_AT_@ -275,7 +275,8 @@ sbase-box: $(BIN)
clean:
_AT_cd tests && $(MAKE) clean
- rm -f $(BIN) $(OBJ) $(LIB) sbase-box sbase-$(VERSION).tar.gz
+ rm -f *.o
+ rm -f $(BIN) $(LIB) sbase-box sbase-$(VERSION).tar.gz
rm -f scripts/make
rm -f getconf.h bc.c
rm -f proto
Received on Wed Dec 31 2025 - 16:17:03 CET
This archive was generated by hypermail 2.3.0
: Wed Dec 31 2025 - 16:24:32 CET