view Makefile @ 404:6930917a3752 build-2.7

Extend copyright for Makefile
author Franz Glasner <fzglas.hg@dom66.de>
date Tue, 17 Feb 2026 15:31:50 +0100
parents 90e1d34d977f
children d3429477cd55
line wrap: on
line source

# dev and build helper
# :-
# SPDX-FileCopyrightText: © 2025-2026 Franz Glasner
# SPDX-License-Identifier: BSD-3-Clause
# :-

.PHONY: help clean export-for-dist build distclean dist

help:
	@echo Targets: clean, export-for-dist, build, distclean and dist

clean:
	rm -rf __arch/
	find . -name '*.pyc' -delete

export-for-dist: clean
	hg kwarchive __arch

build:
	python setup.py sdist bdist_wheel
	python _postprocess-sdist.py
	gzip --best dist/*tar

distclean: clean
# package build information
	rm -rf build/ dist/ *.egg-info

# Full clean build for sdist, wheel and docs
dist: distclean build