summaryrefslogtreecommitdiff
path: root/make-man-rules.py
Commit message (Collapse)AuthorAge
* build-sys: generate links for html alias pagesZbigniew Jędrzejewski-Szmek2013-03-09
|
* build-sys: fix update-man-rules for vpath buildsZbigniew Jędrzejewski-Szmek2013-02-27
|
* build-sys: substitute strings in systemd.unit(5)Zbigniew Jędrzejewski-Szmek2013-02-06
| | | | | Makefile.am is updated to deal with .xml.in sources. Nothing in the output is really changed yet, this is just preparation.
* build-sys: create Makefile-man.am automaticallyZbigniew Jędrzejewski-Szmek2013-02-06
man rules were repeating the same information in too many places, which was error prone. Those rules can be easily generated from .xml files. For efficiency and because python is not a required dependency, Makefile-man.am is only regenerated when requested with make update-man-list If no metadata in man/*.xml changed, this file should not change. So only when a new man page or a new alias is added, this file should show up in 'git diff'. The change should then be committed. If the support for building from git without python was dropped, we could drop Makefile-man.am from version control. This would also increase the partial build time (since more stuff would be rebuild whenever sources in man/*.xml would be modified), so it would probably wouldn't be worth it.