# HG changeset patch # User Franz Glasner # Date 1776668811 -7200 # Node ID db0171f62e5a756488c70868304a779c92bc02d1 # Parent 81554feb650718277f3c2391e62917d12bdfbcd8 A Makefile to help building and testing diff -r 81554feb6507 -r db0171f62e5a Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Mon Apr 20 09:06:51 2026 +0200 @@ -0,0 +1,22 @@ +# dev and build helper +# :- +# SPDX-FileCopyrightText: © 2026 Franz Glasner +# SPDX-License-Identifier: MIT +# :- + +.PHONY: help clean distclean dist build + +help: + @echo Targets: help, clean, distclean, dist, build + +build: + python -m build + +dist: distclean build + +distclean: clean + rm -rf dist/ *.egg-info + +clean: + rm -rf __arch/ + find . -name '*.pyc' -delete