1
0
mirror of https://github.com/drwetter/testssl.sh.git synced 2025-10-08 19:52:53 +02:00
Files
.github
bin
doc
Makefile
template.html
testssl.1
testssl.1.html
testssl.1.md
etc
t
utils
.dockerignore
.editorconfig
.gitignore
CHANGELOG.md
CONTRIBUTING.md
CREDITS.md
Coding_Convention.md
Dockerfile
Dockerfile.git
Dockerfile.md
LICENSE
Readme.md
openssl-iana.mapping.html
testssl.sh
testssl.sh/doc/Makefile
2022-01-07 22:23:21 +01:00

15 lines
435 B
Makefile

PANDOC = pandoc
MANSECTION = 1
NAME=testssl
all: $(NAME).$(MANSECTION) $(NAME).$(MANSECTION).html
clean:
rm -f $(NAME).$(MANSECTION) $(NAME).$(MANSECTION).html
$(NAME).$(MANSECTION): $(NAME).$(MANSECTION).md
$(PANDOC) --standalone --to man $(NAME).$(MANSECTION).md -o $@
$(NAME).$(MANSECTION).html: template.html $(NAME).$(MANSECTION).md
$(PANDOC) --standalone --to html5 --template template.html $(NAME).$(MANSECTION).md -o $@