breadshot/Makefile
2026-07-02 20:59:24 +08:00

14 lines
268 B
Makefile

PREFIX ?= /usr/local
BINDIR := $(PREFIX)/bin
TARGET := target/release/breadshot
.PHONY: build install uninstall
build:
cargo build --release
install: build
install -Dm755 $(TARGET) $(DESTDIR)$(BINDIR)/breadshot
uninstall:
rm -f $(DESTDIR)$(BINDIR)/breadshot