Mercurial > hgrepos > Python > apps > py-cutils
view Makefile @ 368:7761a15b9736
treesum: Escape `\' using `\\' instead of `\x5c'.
Wished by sbro.
BUGS: Escaping should be controllable by a commandline option.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Thu, 10 Apr 2025 11:58:36 +0200 |
| parents | bbfcdbd75bfe |
| children |
line wrap: on
line source
# dev and build helper # :- # SPDX-FileCopyrightText: © 2025 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 dist/*tar distclean: clean # package build information rm -rf build/ dist/ src/*.egg-info # Full clean build for sdist, wheel and docs dist: distclean build
