David Pursehouse | 3d597da | 2014-05-14 10:47:11 +0900 | [diff] [blame] | 1 | # 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 | |
| 15 | ASCIIDOC ?= asciidoc |
| 16 | ASCIIDOC_EXTRA ?= |
| 17 | ASCIIDOC_VER ?= 8.6.3 |
David Pursehouse | 3d597da | 2014-05-14 10:47:11 +0900 | [diff] [blame] | 18 | |
| 19 | all: html |
| 20 | |
| 21 | clean: |
| 22 | rm -f *.html |
David Pursehouse | 3d597da | 2014-05-14 10:47:11 +0900 | [diff] [blame] | 23 | |
| 24 | ASCIIDOC_EXE := $(shell which $(ASCIIDOC)) |
| 25 | ifeq ($(wildcard $(ASCIIDOC_EXE)),) |
| 26 | $(error $(ASCIIDOC) must be available) |
| 27 | else |
| 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 |
| 32 | endif |
| 33 | |
Shawn Pearce | f576466f | 2014-05-19 13:40:28 -0700 | [diff] [blame] | 34 | DOC_HTML := $(patsubst %.txt,%.html,$(wildcard *.txt)) |
| 35 | REVISION := $(shell git describe HEAD | sed s/^v//) |
David Pursehouse | 3d597da | 2014-05-14 10:47:11 +0900 | [diff] [blame] | 36 | |
| 37 | html: $(DOC_HTML) |
| 38 | |
David Pursehouse | 3d597da | 2014-05-14 10:47:11 +0900 | [diff] [blame] | 39 | $(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 $@+ $@ |