Skip to content

Commit

Permalink
trurl: render the manpage from markdown
Browse files Browse the repository at this point in the history
Closes #389
  • Loading branch information
bagder committed Aug 27, 2024
1 parent d5d1e5a commit ee2fd74
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions trurl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ SRCROOT=$(ROOT)/cvssource
DOCROOT=$(SRCROOT)/docs
TESTROOT=$(SRCROOT)/tests
LIBROOT=$(SRCROOT)/lib
SCRIPTS=$(SRCROOT)/scripts
CURL=$(ROOT)

include $(ROOT)/mainparts.mk
Expand All @@ -19,8 +20,9 @@ PAGES = index.html \
all: $(PAGES)
(cd trurl-www && git pull)

trurl.gen: trurl-www/trurl.1
$(MAN2HTML) < $< > trurl.gen
trurl.gen: trurl-www/trurl.md
$(SCRIPTS)/cd2nroff < $< > trurl.1
$(MAN2HTML) < trurl.1 > trurl.gen

manual.html: _manual.html $(MAINPARTS) trurl.gen
$(ACTION)
Expand Down

0 comments on commit ee2fd74

Please sign in to comment.