summaryrefslogtreecommitdiffstatsabout
path: root/Makefile
blob: b0637de72facc4658aceb1813ee64fa0a2c51943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
clean:
	find -name "*~" | xargs rm -f
	find -name "*.pyc" | xargs rm -f
	find -name "*.log" | xargs rm -f
	find -name "*.pid" | xargs rm -f


superclean: clean
	python setup.py clean
	dh_clean
	rm -rf build dist python-build-stamp-2.5
	cd webpanel && make clean