exa/Makefile

24 lines
636 B
Makefile
Raw Normal View History

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; }
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
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/
install: build $(INSTALL)
.PHONY: install