File: Makefile

package info (click to toggle)
rust-failure 0.1.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 364 kB
  • sloc: sh: 37; makefile: 17
file content (15 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (25)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: test
.PHONY: all

test: 
	@echo TEST DEFAULT FEATURES
	@cargo test --all
	@echo TEST WITH BACKTRACE
	@cargo test --features backtrace --all
	@echo TEST NO DEFAULT FEATURES
	@cargo check --no-default-features --all
.PHONY: test

check:
	@cargo check --all
.PHONY: check