scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 00d5bab0a1975bb9bb2d888f1945595afe1b7bdb
parent cf963771888825f268769131531b7c5f51b8fb04
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 30 Oct 2021 06:28:48 +0200

libmach: Remove objects in subdirectories

After libmach went to single Makefile approach we lost recursive
clean, so objects were not cleared.

Diffstat:
Msrc/libmach/Makefile | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/libmach/Makefile b/src/libmach/Makefile @@ -44,5 +44,6 @@ $(TARGET): $(OBJS) clean: rm -f $(TBLS) objlst.mk + rm -f */*.o include deps.mk