Add doc target.

This commit is contained in:
Dominik Pantůček 2023-07-04 20:17:07 +02:00
parent f40f7565b4
commit abeb773ce4
2 changed files with 6 additions and 1 deletions

View file

@ -46,3 +46,7 @@ install-dev:
.PHONY: gendoc .PHONY: gendoc
gendoc: gendoc:
@make -C src gendoc @make -C src gendoc
.PHONY: doc
doc: gendoc
@./gendoc

View file

@ -2,5 +2,6 @@
(import duck-extract (import duck-extract
util-time) util-time)
(print "GENDOC") (print "# Utility modules")
(newline)
(print-module-duck util-time) (print-module-duck util-time)