From 8d1c657a30aa46789aef9865a5d365c62713713c Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Thu, 21 Sep 2017 15:21:40 +0200 Subject: [PATCH] Makefile added --- misp-galaxy-format/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 misp-galaxy-format/Makefile diff --git a/misp-galaxy-format/Makefile b/misp-galaxy-format/Makefile new file mode 100644 index 0000000..210eb88 --- /dev/null +++ b/misp-galaxy-format/Makefile @@ -0,0 +1,9 @@ +MMARK:=/home/adulau/git/mmark/mmark/mmark -xml2 -page + +docs = $(wildcard *.md) + +all: $(docs) + $(MMARK) $< > $<.xml + xml2rfc --text $<.xml + xml2rfc --html $<.xml +