Codebase list python-fuse / fb0a4ac1-52fb-4dfa-b4a4-7c2fc7ce9c6b/main Makefile
fb0a4ac1-52fb-4dfa-b4a4-7c2fc7ce9c6b/main

Tree @fb0a4ac1-52fb-4dfa-b4a4-7c2fc7ce9c6b/main (Download .tar.gz)

Makefile @fb0a4ac1-52fb-4dfa-b4a4-7c2fc7ce9c6b/mainraw · history · blame

all: source manylinux

source:
	python3 setup.py sdist

manylinux:
	docker run --rm -it -e PLAT=manylinux2010_x86_64 -v $(PWD):/io:Z -w /io quay.io/pypa/manylinux2010_x86_64 bash -c "yum install -y fuse-devel && /opt/python/cp39-cp39/bin/python setup.py bdist_wheel && auditwheel repair dist/*.whl"

clean:
	python3 setup.py clean --all
	rm -fr build dist fuse_python.egg-info wheelhouse