mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-05 12:27:53 +00:00
b494c9c0f0
`make` doesn't know how to tell if it needs to recompile or not, but `cargo` does, so we should always call through into `cargo`.
26 lines
784 B
Makefile
26 lines
784 B
Makefile
PREFIX ?= /usr/local
|
|
|
|
BUILD = target/release/exa
|
|
|
|
$(BUILD):
|
|
@which rustc > /dev/null || { echo "exa requires Rust to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
|
|
cargo build --release
|
|
|
|
build: $(BUILD)
|
|
|
|
build-no-git:
|
|
@which rustc > /dev/null || { echo "exa requires Rust to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
|
|
cargo build --release --no-default-features
|
|
|
|
INSTALL = $(PREFIX)/bin/exa
|
|
|
|
$(INSTALL):
|
|
# BSD and OSX don't have -D to create leading directories
|
|
install -dm755 $(PREFIX)/bin/ $(PREFIX)/share/man/man1/
|
|
install -sm755 target/release/exa $(PREFIX)/bin/
|
|
install -m644 contrib/man/*.1 $(PREFIX)/share/man/man1/
|
|
|
|
install: build $(INSTALL)
|
|
|
|
.PHONY: $(BUILD) build-no-git $(INSTALL)
|