Don't delete non-autogenerated source files when cleaning up.

This commit is contained in:
Thomas Heller 2006-03-16 07:33:49 +00:00
parent c4bd28c303
commit 922ff4a321
1 changed files with 2 additions and 2 deletions

View File

@ -974,8 +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 {} ';'
find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
clobber: clean
-rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \