exa/Makefile

26 lines
807 B
Makefile
Raw Normal View History

PREFIX ?= /usr/local
BUILD = target/release/exa
$(BUILD):
2016-02-10 18:21:49 +00:00
@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)
2015-06-07 13:35:56 +00:00
build-no-git:
2016-02-10 18:21:49 +00:00
@which rustc > /dev/null || { echo "exa requires Rust to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
2015-06-07 13:35:56 +00:00
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/" "$(DESTDIR)$(PREFIX)/share/man/man1/"
install -sm755 -- target/release/exa "$(DESTDIR)$(PREFIX)/bin/"
install -m644 -- contrib/man/*.1 "$(DESTDIR)$(PREFIX)/share/man/man1/"
install: build $(INSTALL)
.PHONY: install