madfun 0.1.2

Autogenerate Atlassian Document Format (ADF) from Markdown
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.DEFAULT_GOAL := build

build: README.md doc
	cargo build

test:
	cargo test

doc: Cargo.lock
	cargo doc --document-private-items --keep-going

.PHONY: README.md
README.md:
	cargo readme > $@

check: build test