Codebase list pypykatz / d873b503-d8d2-45ed-a4f8-55595423e0f1/upstream Makefile
d873b503-d8d2-45ed-a4f8-55595423e0f1/upstream

Tree @d873b503-d8d2-45ed-a4f8-55595423e0f1/upstream (Download .tar.gz)

Makefile @d873b503-d8d2-45ed-a4f8-55595423e0f1/upstreamraw · history · blame

clean:
	rm -f -r build/
	rm -f -r dist/
	rm -f -r *.egg-info
	find . -name '*.pyc' -exec rm -f {} +
	find . -name '*.pyo' -exec rm -f {} +
	find . -name '*~' -exec rm -f  {} +

publish: clean
	python3 setup.py sdist bdist_wheel
	python3 -m twine upload dist/*

rebuild: clean
	python3 setup.py install

build:
	python3 setup.py install