home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Misc / Makefile < prev    next >
Makefile  |  1994-01-04  |  242b  |  11 lines

  1. all:
  2.         @echo Nothing to make in this directory.
  3.  
  4. clean:
  5.         find . '(' -name '*.pyc' -o -name core -o -name '*~' \
  6.             -o -name '[@,#]*' -o -name '*.old' \
  7.             -o -name '*.orig' -o -name '*.rej' ')' \
  8.             -print -exec rm -f {} ';'
  9.  
  10. clobber:    clean
  11.