Skip to content

Commit

Permalink
Merge pull request #86 from glensc/make-build-makefile
Browse files Browse the repository at this point in the history
Build: Add make build target
  • Loading branch information
sdelafond authored Jan 2, 2025
2 parents 4d3c0e3 + bee27f4 commit d7dcec3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ TAGS := cp312-cp312
source:
python3 setup.py sdist

build:
python3 setup.py build

manylinux:
docker run --rm -v $(PWD):/io -w /io quay.io/pypa/$(POLICY)_$(PLATFORM) \
make build-wheels \
Expand All @@ -24,3 +27,5 @@ build-wheel:
clean:
$(PYTHON) setup.py clean --all
rm -fr build dist dist-* fuse_python.egg-info wheelhouse

.PHONY: build

0 comments on commit d7dcec3

Please sign in to comment.