forked from ga4gh/ga4gh-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
43 lines (36 loc) · 1.07 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
# GA4GH top level Makefile to build document (requires GNU make)
#
# make is use to allow building on readthedocs.org, which does not
# support JAVA required for maven.
.DELETE_ON_ERROR:
.PRECIOUS :
.SUFFIXES :
# enable more robust bash
SHELL:=/bin/bash -beEu -o pipefail
BUILD_DIR:=target/doc
ERR_LOG:=2> err.log
ifdef verbose
ERR_LOG:=
endif
############################################################################
default: help
.PHONY: help
help:
@echo "targets: " >&2
@echo " help - display this help messsage" >&2
@echo " docs - build HTML documentation in ${BUILD_DIR}" >&2
@echo " package - run mvn package" >&2
@echo " clean - delete generated documentation" >&2
@exit 1
# N.B. this command mimics behavior on RTD
# doc/source is the root of the rst files; the ../.. components effectively
# counter the cd doc/source to place the docs at the schemas root
.PHONY: docs
docs:
cd doc/source && sphinx-build -b html -d ../../${BUILD_DIR}/doctrees . ../../${BUILD_DIR}/html ${ERR_LOG}
.PHONY: package
package:
mvn package
.PHONY: clean
clean:
rm -rf ${BUILD_DIR}