home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 4 / AACD04.ISO / AACD / Programming / Python / Lib / Python1.5 / Makefile < prev    next >
Encoding:
Makefile  |  1997-10-21  |  289 b   |  13 lines

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