mirror of
https://github.com/wez/wezterm.git
synced 2024-11-21 18:12:23 +03:00
20 lines
305 B
Makefile
20 lines
305 B
Makefile
.PHONY: all fmt build check test
|
|
|
|
all: build
|
|
|
|
test:
|
|
cargo nextest run
|
|
|
|
check:
|
|
cargo check
|
|
|
|
build:
|
|
cargo build $(BUILD_OPTS) -p wezterm
|
|
cargo build $(BUILD_OPTS) -p wezterm-gui
|
|
cargo build $(BUILD_OPTS) -p wezterm-mux-server
|
|
cargo build $(BUILD_OPTS) -p strip-ansi-escapes
|
|
|
|
fmt:
|
|
cargo +nightly fmt
|
|
|