Mercurial > hgrepos > Python > libs > pygments-lexer-pseudocode2
diff 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 diff
--- /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
