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):
|
|
|
|
cp target/release/exa $(PREFIX)/bin/
|
2015-06-07 15:52:28 +00:00
|
|
|
cp contrib/man/*.1 $(PREFIX)/share/man/man1/
|
2015-02-24 15:48:39 +00:00
|
|
|
|
|
|
|
install: build $(INSTALL)
|
|
|
|
|
|
|
|
.PHONY: install
|