(0 . 0)(1 . 21)
5 VERSION := 9980
6
7 DISTFILES = Makefile blatta README.txt lib migrations tests test_net_configs start_test_net.sh
8
9 all:
10 echo "Nothing to do."
11
12 dist:
13 mkdir blatta-$(VERSION)
14 cp -r $(DISTFILES) blatta-$(VERSION)
15 tar cvzf blatta-$(VERSION).tar.gz --exclude='*.db*' blatta-$(VERSION)
16 rm -rf blatta-$(VERSION)
17
18 clean:
19 rm -rf blatta-$(VERSION).diff blatta-$(VERSION).diff.escaped blatta-$(VERSION)
20 find . -name "*.swp" -delete
21 find . -name "*.pyc" -delete
22 rm *.tar.gz
23
24 test:
25 python -m unittest discover -v