1.PHONY: publish sample_output
2
3publish:
4	rm -rf dist/
5	tox -e packaging
6	twine upload -s dist/*
7
8sample_output:
9	rm -rf hpack-test-case/
10	git clone https://github.com/http2jp/hpack-test-case.git
11	tox -e create_test_output -- hpack-test-case
12