# HG changeset patch # User Franz Glasner # Date 1758270533 -7200 # Node ID 2f43e400f1444925868d3bb0a9588f8ed6669887 # Parent eb3dd22fef2c75579c2fceddd0ed2592bfb25970 Provide an "all" target to build both the sdist and the wheel diff -r eb3dd22fef2c -r 2f43e400f144 Makefile.freebsd --- a/Makefile.freebsd Thu Sep 18 22:04:13 2025 +0200 +++ b/Makefile.freebsd Fri Sep 19 10:28:53 2025 +0200 @@ -26,7 +26,7 @@ # export PYMUPDF_SETUP_MUPDF_TESSERACT=0 # -.PHONY: wheel sdist populate-venv check +.PHONY: all wheel sdist populate-venv check .SILENT: check @@ -51,6 +51,10 @@ #CC= $(CLANG_DIR)/bin/clang #CXX= $(CLANG_DIR)/bin/clang++ + +all: sdist wheel + + wheel: check $(TEST) -e $(firstword $(PYTHON_PREFIXES))/bin/make || $(SYMLINK) $(LOCALBASE)/bin/gmake $(firstword $(PYTHON_PREFIXES))/bin/make $(TEST) -e $(firstword $(PYTHON_PREFIXES))/bin/ar || $(SYMLINK) $(CLANG_DIR)/bin/llvm-ar $(firstword $(PYTHON_PREFIXES))/bin/ar