ucg/Makefile

21 lines
275 B
Makefile
Raw Normal View History

all: test build
build:
cargo build
2019-01-15 19:33:08 -06:00
test: stdlibtest
unit:
cargo test
integration: unit
cargo run -- test -r integration_tests
stdlibtest: integration
2019-01-15 19:33:08 -06:00
cargo run -- test -r std/tests
install: test
2019-01-19 13:18:06 -06:00
cargo install --path . --force
publish: build test
cargo publish