1 2 3 4 5 6 7 8 9 10 11 12
.PHONY: dev rel all: dev dev: @CARGO@ build rel: @CARGO@ build --release clean: @CARGO@ clean