1
0
mirror of https://github.com/bspeice/qadapt synced 2025-07-01 22:06:49 -04:00

Use new CI template

This commit is contained in:
2018-12-02 22:42:29 -05:00
parent 095fd797c4
commit 3e0770400d
10 changed files with 205 additions and 11 deletions

19
Makefile Normal file
View File

@ -0,0 +1,19 @@
.PHONY: all
all:
@echo 'Please use `cargo` commands to manage building/testing qadapt'
.PHONY: contributors
contributors:
@echo '`qadapt` is developed by:' > CONTRIBUTORS.md
@echo ' Bradlee Speice <bradlee@speice.io>' >> CONTRIBUTORS.md
@git log --format=' %aN <%aE>' | grep -v "Bradlee Speice <bradlee@speice.io>" | sort -u >> CONTRIBUTORS.md
.PHONY: readme README.md
readme: README.md
README.md: src/lib.rs
@sed -i '/---/q' README.md
@cat src/lib.rs | grep '//!' | sed 's/^\/\/\! *//g' >> README.md
.PHONY: doc
doc: readme contributors