From 56d39c46e400f869fd61c8dbbeb3b921d1502e7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Thu, 2 Jan 2025 01:56:45 +0200 Subject: [PATCH 1/2] Add make build target This adds target to build for local os --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 1e9feb2..f00cc3e 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,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 \ From bee27f430a55426ff809c6a558cebfbad82cd03a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Thu, 2 Jan 2025 01:57:23 +0200 Subject: [PATCH 2/2] Make build target phony There also is directory build that would make build target up to date when exists --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f00cc3e..35fba2d 100644 --- a/Makefile +++ b/Makefile @@ -26,3 +26,5 @@ build-wheel: clean: python3 setup.py clean --all rm -fr build dist dist-* fuse_python.egg-info wheelhouse + +.PHONY: build