We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83d4075 commit fe010c8Copy full SHA for fe010c8
doc/Makefile
@@ -1,14 +1,17 @@
1
PANDOC = pandoc
2
MANSECTION = 1
3
-NAME=testssl
+NAME = testssl
4
+TITLE = testssl.sh
5
6
all: $(NAME).$(MANSECTION) $(NAME).$(MANSECTION).html
7
8
+force: clean all
9
+
10
clean:
11
rm -f $(NAME).$(MANSECTION) $(NAME).$(MANSECTION).html
12
13
$(NAME).$(MANSECTION): $(NAME).$(MANSECTION).md
14
$(PANDOC) --standalone --to man $(NAME).$(MANSECTION).md -o $@
15
16
$(NAME).$(MANSECTION).html: template.html $(NAME).$(MANSECTION).md
- $(PANDOC) --standalone --to html5 --template template.html $(NAME).$(MANSECTION).md -o $@
17
+ $(PANDOC) --standalone --to html5 --template template.html --metadata title="$(TITLE)" $(NAME).$(MANSECTION).md -o $@
0 commit comments