mirror of
https://github.com/zaphar/ucg.git
synced 2025-07-22 18:19:54 -04:00
21 lines
275 B
Makefile
21 lines
275 B
Makefile
all: test build
|
|
|
|
build:
|
|
cargo build
|
|
|
|
test: stdlibtest
|
|
|
|
unit:
|
|
cargo test
|
|
|
|
integration: unit
|
|
cargo run -- test -r integration_tests
|
|
|
|
stdlibtest: integration
|
|
cargo run -- test -r std/tests
|
|
|
|
install: test
|
|
cargo install --path . --force
|
|
|
|
publish: build test
|
|
cargo publish
|