15 lines
249 B
Makefile
15 lines
249 B
Makefile
|
CARGO_CMD ?= cargo
|
||
|
|
||
|
packages = bigint integer rational traits
|
||
|
|
||
|
test:
|
||
|
$(MAKE) run-all TASK="test --no-fail-fast"
|
||
|
|
||
|
run-all: $(packages)
|
||
|
$(CARGO_CMD) $(TASK)
|
||
|
|
||
|
$(packages):
|
||
|
$(CARGO_CMD) $(TASK) --manifest-path $@/Cargo.toml
|
||
|
|
||
|
.PHONY: $(packages) test
|