2015-02-24 15:48:39 +00:00
|
|
|
PREFIX ?= /usr/local
|
|
|
|
|
|
|
|
BUILD = target/release/exa
|
|
|
|
|
|
|
|
$(BUILD):
|
2015-06-07 13:35:56 +00:00
|
|
|
@which rustc > /dev/null || { echo "exa requires Rust Nightly to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
|
2015-02-24 15:48:39 +00:00
|
|
|
cargo build --release
|
|
|
|
|
|
|
|
build: $(BUILD)
|
|
|
|
|
2015-06-07 13:35:56 +00:00
|
|
|
build-no-git:
|
|
|
|
@which rustc > /dev/null || { echo "exa requires Rust Nightly to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
|
|
|
|
cargo build --release --no-default-features
|
|
|
|
|
2015-02-24 15:48:39 +00:00
|
|
|
INSTALL = $(PREFIX)/bin/exa
|
|
|
|
|
|
|
|
$(INSTALL):
|
2015-07-31 05:11:32 +00:00
|
|
|
# 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/
|
2015-02-24 15:48:39 +00:00
|
|
|
|
|
|
|
install: build $(INSTALL)
|
|
|
|
|
|
|
|
.PHONY: install
|