.PHONY: all
all:
@echo 'Try `cargo build` instead.'
.PHONY: authors
authors:
echo 'Encoding is mainly written by Kang Seonghoon <public+rust@mearie.org>,' > AUTHORS.txt
echo 'and also the following people (in ascending order):' >> AUTHORS.txt
echo >> AUTHORS.txt
git log --format='%aN <%aE>' | grep -v 'Kang Seonghoon' | sort -u >> AUTHORS.txt
.PHONY: test
test:
cargo test -v
cargo test -v -p encoding-index-singlebyte
cargo test -v -p encoding-index-korean
cargo test -v -p encoding-index-japanese
cargo test -v -p encoding-index-simpchinese
cargo test -v -p encoding-index-tradchinese
.PHONY: readme
readme: README.md
README.md: src/lib.rs
awk '/^# Encoding /{print "[Encoding][doc]",$$3}' $< > $@
awk '/^# Encoding /{print "[Encoding][doc]",$$3}' $< | sed 's/./=/g' >> $@
echo >> $@
echo '[![Encoding on Travis CI][travis-image]][travis]' >> $@
echo >> $@
echo '[travis-image]: https://travis-ci.org/lifthrasiir/rust-encoding.png' >> $@
echo '[travis]: https://travis-ci.org/lifthrasiir/rust-encoding' >> $@
awk '/^# Encoding /,/^## /' $< | tail -n +2 | head -n -2 >> $@
echo >> $@
echo '[Complete Documentation][doc]' >> $@
echo >> $@
echo '[doc]: https://lifthrasiir.github.io/rust-encoding/' >> $@
echo >> $@
awk '/^## /,/^\*\/$$/' $< | grep -v '^# ' | head -n -2 >> $@