btc-utils/Makefile

20 lines
156 B
Makefile

CC=cargo
FMT=fmt
OPTIONS=
default: fmt
$(CC) build
fmt:
$(CC) fmt --all
check:
$(CC) test --all
example:
@echo "nothing yet!"
clean:
$(CC) clean