mirror of
https://github.com/agersant/polaris
synced 2025-01-10 12:08:48 +00:00
21 lines
417 B
Makefile
21 lines
417 B
Makefile
POLARIS_BIN_DIR := ~/.local/bin/polaris
|
|
POLARIS_DATA_DIR := ~/.local/share/polaris
|
|
|
|
all: build
|
|
|
|
build:
|
|
cargo build --release
|
|
|
|
install: build
|
|
install -d $(POLARIS_BIN_DIR)
|
|
install -d $(POLARIS_DATA_DIR)
|
|
install ./target/release/polaris $(POLARIS_BIN_DIR)
|
|
cp -r ./web $(POLARIS_DATA_DIR)
|
|
@echo "Polaris installation complete!"
|
|
|
|
clean:
|
|
cargo clean
|
|
|
|
uninstall:
|
|
rm -r $(POLARIS_BIN_DIR)
|
|
rm -r $(POLARIS_DATA_DIR)
|