# CargoMake by NeoSmart Technologies # Written and maintained by Mahmoud Al-Qudsi # Released under the MIT public license # Obtain updates from https://github.com/neosmart/CargoMake COLOR ?= always # Valid COLOR options: {always, auto, never} CARGO = cargo --color $(COLOR) .PHONY: all bench build check clean doc install publish run test update all: build bench: @$(CARGO) bench build: @$(CARGO) build @$(CARGO) build --no-default-features check: build test clean: @$(CARGO) clean doc: @$(CARGO) doc install: build @$(CARGO) install publish: @$(CARGO) publish run: build @$(CARGO) run test: build @$(CARGO) test @$(CARGO) test --no-default-features update: @$(CARGO) update