view Makefile @ 15:db0171f62e5a

A Makefile to help building and testing
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 20 Apr 2026 09:06:51 +0200
parents
children b92f660f2461
line wrap: on
line source

# 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