asimov-construct-cli 25.0.0-dev.0

ASIMOV Construct Command-Line Interface (CLI)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CARGO = cargo

all: Cargo.toml
	$(CARGO) build

check: Cargo.toml
	$(CARGO) test

clean: Cargo.toml
	@rm -rf *~ target
	$(CARGO) clean

.PHONY: all check clean
.SECONDARY:
.SUFFIXES: