blob: d9dcf5519fcb08d9ef28c42005eefadfe74ccafb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# vim: shiftwidth=4 softtabstop=4 tabstop=4 noexpandtab
.PHONY: all clean tarball
all:
python setup.py build
clean:
find . -type d -iname '__pycache__' -exec rm -rf {} +;
rm -rf build
tarball: clean
tar --exclude-vcs -cvf xbackup.tar *
|