Mercurial > hgrepos > Python > libs > ConfigMix
view Makefile @ 792:0b83218218e2 default tip
Upgrade to my-fonts.sty v0.5
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 18 May 2026 12:26:44 +0200 |
| parents | 6f0a46c4b79e |
| children |
line wrap: on
line source
# dev and build helper # :- # SPDX-FileCopyrightText: © 2026 Franz Glasner # SPDX-License-Identifier: BSD-3-Clause # :- .PHONY: help export clean tests doc clean-doc doc-html clean-doc-html doc-pdf clean-doc-pdf help: @echo Targets: help, export, clean, tests, doc, clean-doc, doc-html, clean-doc-html, doc-pdf, clean-doc-pdf export: rm -rf __arch hg kwarchive __arch clean: rm -rf __arch/ find . -name '*.pyc' -delete tests: -python -m unittest discover -s tests doc: doc-html doc-pdf clean-doc: (cd docs && gmake clean) doc-html: (cd docs && gmake html) clean-doc-html: rm -rf docs/_build/html doc-pdf: (cd docs && gmake latex) (cd docs/_build/latex && gmake) clean-doc-pdf: rm -rf docs/_build/latex
