-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile
36 lines (24 loc) · 1.01 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
# SPDX-FileCopyrightText: © 2016 Stefano Zacchiroli <zack@upsilon.cc>
# SPDX-FileCopyrightText: © 2018 Martin Michlmayr <tbm@cyrius.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
all: test docs
L2C = bin/ledger2beancount
TEST_DEPS = $(wildcard tests/*) $(L2C)
test: test-stamp
test-stamp: $(TEST_DEPS)
cd tests && ./runtests
touch $@
check: test
docs/ledger2beancount.1: docs/ledger2beancount.1.scd
scdoc < $< > $@
docs/ledger2beancount.5: docs/ledger2beancount.5.scd
scdoc < $< > $@
docs/manual.pdf: docs/index.md docs/features.md docs/compatibility.md docs/installation.md docs/usage.md docs/configuration.md docs/guide.md docs/limitations.md docs/tips.md docs/changelog.md docs/contributing.md docs/authors.md docs/license.md
pandoc -f markdown+definition_lists+backtick_code_blocks $^ -o $@
pdf: docs/manual.pdf
man: docs/ledger2beancount.1 docs/ledger2beancount.5
docs: pdf man
clean:
rm -f test-stamp docs/ledger2beancount.1 docs/ledger2beancount.5 docs/manual.pdf
.PHONY: all check clean test pdf man docs