blob: aed9e90b692cd3737ef746bf4828baba5cde1fa2 [file] [log] [blame]
David Pursehouse3d597da2014-05-14 10:47:11 +09001# Copyright (C) 2009 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15ASCIIDOC ?= asciidoc
16ASCIIDOC_EXTRA ?=
17ASCIIDOC_VER ?= 8.6.3
David Pursehouse3d597da2014-05-14 10:47:11 +090018
19all: html
20
21clean:
22 rm -f *.html
David Pursehouse3d597da2014-05-14 10:47:11 +090023
24ASCIIDOC_EXE := $(shell which $(ASCIIDOC))
25ifeq ($(wildcard $(ASCIIDOC_EXE)),)
26 $(error $(ASCIIDOC) must be available)
27else
28 ASCIIDOC_OK := $(shell expr `asciidoc --version | cut -f2 -d' '` \>= $(ASCIIDOC_VER))
29 ifeq ($(ASCIIDOC_OK),0)
30 $(error $(ASCIIDOC) version $(ASCIIDOC_VER) or higher is required)
31 endif
32endif
33
Shawn Pearcef576466f2014-05-19 13:40:28 -070034DOC_HTML := $(patsubst %.txt,%.html,$(wildcard *.txt))
35REVISION := $(shell git describe HEAD | sed s/^v//)
David Pursehouse3d597da2014-05-14 10:47:11 +090036
37html: $(DOC_HTML)
38
David Pursehouse3d597da2014-05-14 10:47:11 +090039$(DOC_HTML): %.html : %.txt
40 @echo "FORMAT $@"
41 @rm -f $@+ $@
42 @$(ASCIIDOC) -a toc \
43 -a data-uri \
44 -a 'revision=$(REVISION)' \
45 -a 'newline=\n' \
46 -b xhtml11 \
47 -f asciidoc.conf \
48 $(ASCIIDOC_EXTRA) \
49 -o $@+ $<
50 @mv $@+ $@