Skip to content

Commit d7dcec3

Browse files
authored
Merge pull request #86 from glensc/make-build-makefile
Build: Add make build target
2 parents 4d3c0e3 + bee27f4 commit d7dcec3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ TAGS := cp312-cp312
88
source:
99
python3 setup.py sdist
1010

11+
build:
12+
python3 setup.py build
13+
1114
manylinux:
1215
docker run --rm -v $(PWD):/io -w /io quay.io/pypa/$(POLICY)_$(PLATFORM) \
1316
make build-wheels \
@@ -24,3 +27,5 @@ build-wheel:
2427
clean:
2528
$(PYTHON) setup.py clean --all
2629
rm -fr build dist dist-* fuse_python.egg-info wheelhouse
30+
31+
.PHONY: build

0 commit comments

Comments
 (0)