mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 17:18:30 +01:00
20 lines
456 B
Makefile
20 lines
456 B
Makefile
VER=$(shell grep version Cargo.toml | head -n1 | grep -Eow '".+"' | sed 's/"//g')
|
|
|
|
debug: src/* Cargo.toml
|
|
@cargo build
|
|
|
|
release: src/* Cargo.toml
|
|
@cargo build --release
|
|
|
|
clean:
|
|
@cargo clean
|
|
|
|
install: release
|
|
@cp target/release/watchexec /usr/bin
|
|
|
|
uninstall:
|
|
@rm /usr/bin/watchexec
|
|
|
|
dist-osx: release
|
|
@tar -cz -C target/release -f target/release/watchexec_osx_$(VER).tar.gz watchexec
|
|
@shasum -a 256 target/release/watchexec_osx_$(VER).tar.gz
|