-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
123 lines (81 loc) · 2.43 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# DIRECTORIES
# ===========
BASE_DIR := test
DATA_DIR := $(BASE_DIR)/data
SCPT_DIR := $(BASE_DIR)/scripts
TEMP_DIR := $(BASE_DIR)/tmp
# PROGRAMMES
# ==========
MKDIR ?= mkdir
PANDOC ?= pandoc
RM ?= rm
SHELL ?= sh
# FILES
# =====
FILTER ?= $(SCPT_DIR)/test-wrapper.lua
# PANDOC
# ======
PANDOC_ARGS ?= --quiet
# DOCUMENTS
# =========
COMMON_DOCS = $(wildcard $(DATA_DIR)/*.md)
COMMON_ABBR = $(notdir $(COMMON_DOCS:.md=))
ZOTXT_DOCS = $(wildcard $(DATA_DIR)/zotxt/*.md)
ZOTWEB_DOCS = $(wildcard $(DATA_DIR)/zoteroweb/*.md)
# ZOTERO CONNECTORS
# =================
CONNECTORS ?= zotxt zoteroweb
# ZOTERO CREDENTIALS
# ==================
ZOTERO_API_KEY ?= MO2GHxbkLnWgCqPtpoewgwIl
# TESTS
# =====
test: lint unit-tests doc-tests
tempdir:
@$(RM) -rf $(TEMP_DIR)
@$(MKDIR) -p $(TEMP_DIR)
lint:
@printf 'Linting ...\n' >&2
@luacheck pandoc-zotxt.lua || [ $$? -eq 127 ]
unit-tests: tempdir
@[ -e share/lua/*/luaunit.lua ] || luarocks install --tree=. luaunit
@printf 'Running unit tests ...\n' >&2
@"$(PANDOC)" $(PANDOC_ARGS) --from markdown --to html \
--lua-filter="$(SCPT_DIR)/unit-tests.lua" \
--metadata test="$(TEST)" /dev/null
doc-tests: $(COMMON_DOCS) $(ZOTXT_DOCS) $(ZOTWEB_DOCS)
.SECONDEXPANSION:
$(COMMON_DOCS): tempdir
@$(SHELL) $(SCPT_DIR)/run-tests -P "$(PANDOC)" -A $(PANDOC_ARGS) \
-f $(FILTER) -c "$(CONNECTORS)" $@
$(ZOTXT_DOCS): tempdir
@$(SHELL) $(SCPT_DIR)/run-tests -P "$(PANDOC)" -A $(PANDOC_ARGS) \
-f $(FILTER) -c zotxt $@
$(ZOTWEB_DOCS): tempdir
@$(SHELL) $(SCPT_DIR)/run-tests -P "$(PANDOC)" -A $(PANDOC_ARGS) \
-f $(FILTER) -c zoteroweb $@
$(COMMON_ABBR): test/data/[email protected]
zotxt/%: test/data/[email protected]
@:
zoteroweb/%: test/data/[email protected]
@:
%.1: %.rst
$(PANDOC) -f rst -t man -s --output=$@ \
--metadata=title=$(notdir $*) \
--metadata=section=1 \
--metadata=date="$$(date '+%B %d, %Y')" \
$*.rst
%.1.gz: %.1
gzip --force $<
%.lua: man/man1/%.lua.rst
$(SHELL) scripts/header-add-man -f $@
docs/index.html: pandoc-zotxt.lua ldoc/config.ld ldoc/ldoc.css
ldoc -c ldoc/config.ld .
man: man/man1/pandoc-zotxt.lua.1.gz
ldoc: docs/index.html
docs: pandoc-zotxt.lua docs/index.html man/man1/pandoc-zotxt.lua.1.gz
all: test docs
.PHONY: all man ldoc docs lint test doc-tests unit-tests \
$(COMMON_DOCS) $(COMMON_ABBR) \
$(ZOTXT_DOCS) zotxt/% \
$(ZOTWEB_DOCS) zoteroweb/%