root/Makefile

Revision 453, 217 bytes (checked in by winfried, 4 years ago)

Cleaning up tree

Line 
1SHELL = /bin/sh
2srcdir = .
3VERSION = 0.1
4
5default: clean
6
7clean:
8        find ./ \( -name '*~' \) -print0 | xargs --no-run-if-empty --null rm -vf
9        find ./ \( -name '*.pyc' \) -print0 | xargs --no-run-if-empty --null rm -vf
Note: See TracBrowser for help on using the browser.