File: Makefile

package info (click to toggle)
evremap 0.0~git20240617.cc618e8-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 304 kB
  • sloc: makefile: 30
file content (12 lines) | stat: -rw-r--r-- 112 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: all fmt check test

all: check

test:
	cargo nextest run

check:
	cargo check

fmt:
	cargo +nightly fmt