Implement the basic rules of Go #40
14
Makefile
14
Makefile
|
@ -35,3 +35,17 @@ ifc-dev:
|
||||||
ifc-test:
|
ifc-test:
|
||||||
cd ifc && make test
|
cd ifc && make test
|
||||||
|
|
||||||
|
kifu-core/dev:
|
||||||
|
cd kifu/kifu-core && make test
|
||||||
|
|
||||||
|
kifu-core/test:
|
||||||
|
cd kifu/kifu-core && make test
|
||||||
|
|
||||||
|
kifu-core/test-oneshot:
|
||||||
|
cd kifu/kifu-core && make test-oneshot
|
||||||
|
|
||||||
|
kifu-gtk:
|
||||||
|
cd kifu/kifu-gtk && make release
|
||||||
|
|
||||||
|
kifu-gtk/dev:
|
||||||
|
cd kifu/kifu-gtk && make dev
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
test:
|
||||||
|
cargo watch -x 'nextest run'
|
||||||
|
|
||||||
|
test-oneshot:
|
||||||
|
cargo nextest run
|
|
@ -0,0 +1,5 @@
|
||||||
|
release:
|
||||||
|
cargo build --release
|
||||||
|
|
||||||
|
dev:
|
||||||
|
cargo watch -x run
|
Loading…
Reference in New Issue