summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Holmes <mike.holmes@linaro.org>2016-04-14 12:38:21 -0400
committerMike Holmes <mike.holmes@linaro.org>2016-04-14 12:38:21 -0400
commitf6be4d88d413a33ffe7ecdc4e03862bf9f2c1568 (patch)
tree759090fefd5576dcdf8571b4aa4c1cfe327cd080
parentca7d1c706f6c6bdeb2f7d2f07fbb845719fcb7c2 (diff)
add Makefile
Signed-off-by: Mike Holmes <mike.holmes@linaro.org>
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..96e0d98
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+HTML = $(patsubst %.adoc,%.html,$(shell find -name \*.adoc))
+
+all: $(HTML)
+
+clean:
+ rm -f $(HTML)
+
+%.html: %.adoc
+ cd $(<D) && asciidoc $(<F)
+
+.PHONY: all clean