mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 06:09:18 +02:00
cleaner now removes old .o files in the lib/ dir
This commit is contained in:
parent
b7fd7ab7f5
commit
cafd5a8848
1 changed files with 1 additions and 0 deletions
1
Makefile
1
Makefile
|
@ -219,6 +219,7 @@ clean:
|
|||
cleaner: clean
|
||||
$(RM) chibi-scheme$(EXE) chibi-scheme-static$(EXE) chibi-scheme-ulimit$(EXE) libchibi-scheme$(SO) *.a include/chibi/install.h
|
||||
$(FIND) lib -name \*$(SO) -exec $(RM) -r '{}' \;
|
||||
$(FIND) lib -name \*.o -exec $(RM) -r '{}' \;
|
||||
|
||||
dist-clean: cleaner
|
||||
for f in `find lib -name \*.stub`; do $(RM) $${f%.stub}.c; done
|
||||
|
|
Loading…
Add table
Reference in a new issue