You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
434 B
34 lines
434 B
CARGO = cargo |
|
|
|
.PHONY: all bench build check clean doc install publish run test update |
|
|
|
all: build |
|
|
|
bench: |
|
@$(CARGO) bench |
|
|
|
build: |
|
@env TERM=xterm-256color $(CARGO) build --color=always 2>&1; $(CARGO) build 2> cargo.out 1>/dev/null |
|
|
|
check: build test |
|
|
|
clean: |
|
@$(CARGO) clean |
|
|
|
doc: |
|
@$(CARGO) doc |
|
|
|
install: |
|
@$(CARGO) install |
|
|
|
publish: |
|
@$(CARGO) publish |
|
|
|
run: build |
|
@$(CARGO) run |
|
|
|
test: |
|
@$(CARGO) test |
|
|
|
update: |
|
@$(CARGO) update
|
|
|