1 2 3 4 5 6 7 8 9 10 11 12 13 14
CARGO=cargo .PHONY: all test_static pub all: $(CARGO) fmt $(CARGO) build $(CARGO) run test_static: $(CARGO) run --features=static pub: $(CARGO) publish