Skip to content
Snippets Groups Projects
Commit 8c184abd authored by Ciro Santilli's avatar Ciro Santilli
Browse files
parent 9133df09
No related branches found
No related tags found
No related merge requests found
/README.html
/README.body.html
/out
# NPM README
......
README.html: README.adoc
bundle exec asciidoctor -o '$@' -v '$<'
.PHONY: clean
OUT = README.html
HEAD = head.html
BODY = README.body.html
FOOT = foot.html
$(OUT): README.adoc $(HEAD) $(FOOT)
bundle exec asciidoctor --embedded -o $(BODY) -v '$<'
cat $(HEAD) $(BODY) $(FOOT) > '$@'
clean:
rm -rf $(OUT) $(BODY)
</div>
</body>
</html>
head.html 0 → 100644
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment