-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathMakefile
79 lines (69 loc) · 2.68 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Makefile for RISC-V Doc Template
#
# This work is licensed under the Creative Commons Attribution-ShareAlike 4.0
# International License. To view a copy of this license, visit
# http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to
# Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
#
# SPDX-License-Identifier: CC-BY-SA-4.0
#
# Description:
#
# This Makefile is designed to automate the process of building and packaging
# the Doc Template for RISC-V Extensions.
DATE ?= $(shell date +%Y-%m-%d)
DOCKER_RUN := docker run --rm -v ${PWD}:/build -w /build \
riscvintl/riscv-docs-base-container-image:latest
# DO NOT SPECIFY A VERSION OR REVMARK HERE! The revision version and mark
# (draft/release/etc) should be marked via the :revnumber: and :revremark: fields
# in the source document itself.
SRC_DIR := ./src
BUILD_DIR := build
HEADER_SOURCE := $(SRC_DIR)/docs-dev-guide.adoc
GIT_SHA_DOC := $(SRC_DIR)/git_sha.adoc
ASCIIDOCTOR_PDF := asciidoctor-pdf
ASCIIDOCTOR_HTML := asciidoctor
OPTIONS := --trace \
-a compress \
-a mathematical-format=svg \
-a pdf-fontsdir=docs-resources/fonts \
-a pdf-theme=docs-resources/themes/riscv-pdf.yml \
-D $(BUILD_DIR) \
--failure-level=WARNING
REQUIRES := --require=asciidoctor-bibtex \
--require=asciidoctor-diagram \
--require=asciidoctor-mathematical
.PHONY: all build clean build-container build-no-container
all: $(GIT_SHA_DOC) build
$(GIT_SHA_DOC): .FORCE
echo ":git_sha: $$(git describe --dirty --always)" > $@
.PHONY: .FORCE
.FORCE: # To force the GIT_SHA_DOC to get rebuilt each time
build:
@echo "Checking if Docker is available..."
@if command -v docker >/dev/null 2>&1 ; then \
echo "Docker is available, building inside Docker container..."; \
$(MAKE) build-container; \
else \
echo "Docker is not available, building without Docker..."; \
$(MAKE) build-no-container; \
fi
build-container:
@echo "Starting build inside Docker container..."
$(DOCKER_RUN) /bin/sh -c "$(ASCIIDOCTOR_PDF) $(OPTIONS) $(REQUIRES) $(HEADER_SOURCE)"
$(DOCKER_RUN) /bin/sh -c "$(ASCIIDOCTOR_HTML) $(OPTIONS) $(REQUIRES) $(HEADER_SOURCE)"
@echo "Build completed successfully inside Docker container."
build-no-container:
@echo "Starting build..."
$(ASCIIDOCTOR_PDF) $(OPTIONS) $(REQUIRES) $(HEADER_SOURCE)
$(ASCIIDOCTOR_HTML) $(OPTIONS) $(REQUIRES) $(HEADER_SOURCE)
@echo "Build completed successfully."
clean:
@if command -v docker >/dev/null 2>&1 ; then \
echo "Cleaning up generated files via Docker..."; \
$(DOCKER_RUN) /bin/sh -c "rm -rf $(BUILD_DIR)"; \
else \
echo "Cleaning up generated files..."; \
rm -rf $(BUILD_DIR); \
fi
@echo "Cleanup completed."