commit e8385d81bf9a73abc0d90359ef7880485ed75eb3
parent 386743f486f96044e233d7a46ccdd3947aa9c3b5
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Sat, 4 Oct 2025 18:23:08 +0200
Add the Star-Ty manual to the relevant Makefile targets
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
@@ -48,6 +48,7 @@ install: sty-genhead
install 644 "$(DESTDIR)$(MANPREFIX)/man1" doc/sty-hooks.1; \
install 644 "$(DESTDIR)$(MANPREFIX)/man1" doc/sty-index.1; \
install 644 "$(DESTDIR)$(MANPREFIX)/man1" doc/sty-list.1; \
+ install 655 "$(DESTDIR)$(MANPREFIX)/man7" doc/star-typesetting.7; \
install 644 "$(DESTDIR)$(PREFIX)/share/doc/star-ty" README.md; \
install 644 "$(DESTDIR)$(PREFIX)/share/doc/star-ty" COPYING; \
install 644 "$(DESTDIR)$(APPPREFIX)/star-ty" example/Makefile; \
@@ -75,6 +76,7 @@ uninstall:
rm -f "$(DESTDIR)$(MANPREFIX)/man1/sty-hooks.1"
rm -f "$(DESTDIR)$(MANPREFIX)/man1/sty-index.1"
rm -f "$(DESTDIR)$(MANPREFIX)/man1/sty-list.1"
+ rm -f "$(DESTDIR)$(MANPREFIX)/man7/star-typesetting.7"
rm -f "$(DESTDIR)$(PREFIX)/share/doc/star-ty/README.md"
rm -f "$(DESTDIR)$(PREFIX)/share/doc/star-ty/COPYING"
rm -f "$(DESTDIR)$(APPPREFIX)/star-ty/Makefile"
@@ -102,3 +104,4 @@ lint:
mandoc -Tlint -Wall doc/sty-hooks.1 || [ $$? -le 1 ]
mandoc -Tlint -Wall doc/sty-index.1 || [ $$? -le 1 ]
mandoc -Tlint -Wall doc/sty-list.1 || [ $$? -le 1 ]
+ mandoc -Tlint -Wall doc/star-typesetting.7 || [ $$? -le 1 ]