summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-03-24 20:59:04 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-03-24 20:59:04 -0700
commit10ff488eb96544074c88ba1aae26025b425dba58 (patch)
tree1170b526e4b60171931aa2784f31b6bdd8491f22 /Makefile
parentfc20b0afbbc06371a4239a9d520c16c5fabf9443 (diff)
docs: Use automatically retrieved version for docs
This eliminates one more hardcoded version from the repo, yay!
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ed2f50d..0e64129 100644
--- a/Makefile
+++ b/Makefile
@@ -71,6 +71,6 @@ $(BUILD)/%.o: %
.SECONDEXPANSION:
docs/%.html: docs/%.adoc $$(shell sed -n 's/include\:\:\(.*\)\[.*/docs\/\1/p' docs/%.adoc)
- asciidoctor -b html5 $< -o $@
+ asciidoctor -b html5 -a version=$(VERSION) $< -o $@
.PHONY: all test clean release .FORCE