1 2 3 4 5 6 7 8 9
CARGO := cargo .PHONY: format format: $(CARGO) fmt .PHONY: test test: format $(CARGO) test