asimov-template-module 0.0.0

Asimov Template Module
Documentation
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: