home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-10-21 | 289 b | 13 lines |
- all:
- @echo Nothing to make in this directory.
-
- clean:
- find . '(' -name '*.py[co]' -o -name '*.fdc' \
- -o -name core -o -name '*~' \
- -o -name '[@,#]*' -o -name '*.old' \
- -o -name '*.orig' -o -name '*.rej' \
- -o -name '*.bak' ')' \
- -print -exec rm -f {} ';'
-
- clobber: clean
-