Kaydet (Commit) 922ff4a3 authored tarafından Thomas Heller's avatar Thomas Heller

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

üst c4bd28c3
......@@ -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) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment