easy-rgb/Makefile

17 lines
139 B
Makefile
Raw Normal View History

CC=cargo
FMT=fmt
OPTIONS=
default: fmt
$(CC) build --all-features
fmt:
$(CC) fmt --all
check:
$(CC) test --all
clean:
$(CC) clean