Copy Makefile from preserves

This commit is contained in:
Tony Garnock-Jones 2021-08-13 12:40:31 -04:00
parent 17fea66291
commit 550851646d
1 changed files with 29 additions and 0 deletions

29
Makefile Normal file
View File

@ -0,0 +1,29 @@
# Use cargo release to manage publication and versions etc.
#
# cargo install cargo-release
all:
cargo build --all-targets
test:
cargo test
test-all:
cargo test --all-targets
# Try
#
# make release-minor
#
# to check things, and
#
# make release-minor RELEASE_DRY_RUN=
#
# to do things for real.
RELEASE_DRY_RUN=--dry-run
release-%:
PUBLISH_GRACE_SLEEP=15 cargo release \
$(RELEASE_DRY_RUN) \
-vv --no-dev-version --exclude-unchanged \
$*