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:
19
Makefile
Normal file
19
Makefile
Normal 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
|
Reference in New Issue
Block a user