summaryrefslogtreecommitdiff
path: root/Makefile
blob: b13d007d07bc1867fc81862a6c644369b410db7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
PYTHON ?= python

test:
	cd test && $(PYTHON) testlex.py
	cd test && $(PYTHON) testyacc.py

wheel:
	$(PYTHON) setup.py bdist_wheel

sdist:
	$(PYTHON) setup.py sdist

upload: wheel sdist
	$(PYTHON) setup.py bdist_wheel upload
	$(PYTHON) setup.py sdist upload

.PHONY: test wheel sdist upload