diff options
author | Thomas Heller <theller@ctypes.org> | 2006-03-15 08:34:38 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2006-03-15 08:34:38 (GMT) |
commit | d77eb1ff43013af0b1f40172df4866a32ef74605 (patch) | |
tree | fcb711cfa4ca86ef79a1ff0372a83c9b88fcb5eb /Makefile.pre.in | |
parent | 0af5d93d8a9ce44343630c24140977fa841dfe04 (diff) | |
download | cpython-d77eb1ff43013af0b1f40172df4866a32ef74605.zip cpython-d77eb1ff43013af0b1f40172df4866a32ef74605.tar.gz cpython-d77eb1ff43013af0b1f40172df4866a32ef74605.tar.bz2 |
In 'make clean', delete some files that are generated by the _ctypes/libffi
configure step.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 5f2e984..056b578 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) \ |