summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1ee1f8c71352f44777db5842e285bab949fb1f3c (plain)
1
2
3
4
5
6
7
8
9
BUILD_CMD=./setup.py sdist --formats gztar,zip bdist_wininst --plat-name win32

build:
	$(BUILD_CMD)

upload:
	$(BUILD_CMD) upload

.PHONY: build upload