Skip to content

Commit cd0ed97

Browse files
committed
Remove shared libraries as part of "make clean" rather than in "make
clobber". This is done so that after a "make clean", setup.py will also recompile all extensions.
1 parent 6b356e7 commit cd0ed97

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Makefile.pre.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,11 +751,12 @@ TAGS::
751751

752752
clean:
753753
find . -name '*.o' -exec rm -f {} ';'
754+
find . -name '*.s[ol]' -exec rm -f {} ';'
754755
find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
755756

756757
clobber: clean
757758
-rm -f $(PYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
758-
Modules/*.so Modules/*.sl tags TAGS \
759+
tags TAGS \
759760
config.cache config.log config.h Modules/config.c
760761
-rm -rf build
761762

0 commit comments

Comments
 (0)