From: Thomas Heller Date: Wed, 15 Mar 2006 08:34:38 +0000 (+0000) Subject: In 'make clean', delete some files that are generated by the _ctypes/libffi X-Git-Tag: v2.5a0~244 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d77eb1ff43013af0b1f40172df4866a32ef74605;p=python In 'make clean', delete some files that are generated by the _ctypes/libffi configure step. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 5f2e98408f..056b57803a 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -974,6 +974,8 @@ clean: find . -name '*.o' -exec rm -f {} ';' find . -name '*.s[ol]' -exec rm -f {} ';' find $(srcdir) -name '*.py[co]' -exec rm -f {} ';' + find $(srcdir) -name 'fficonfig.h' -exec rm -f {} ';' + find $(srcdir) -name 'fficonfig.py' -exec rm -f {} ';' clobber: clean -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \