PYTHON_VERSIONS	:= 3.14 3.13 3.12 3.11
BUILD_ARCHS := aarch64 amd64

%: .env_%
	for arch in $(BUILD_ARCHS); do \
		docker compose --env-file $< run manylinux-$$arch; \
		docker compose --env-file $< run musllinux-$$arch; \
	done

.PHONY:	all
all:	$(PYTHON_VERSIONS)
