mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-06 04:47:52 +00:00
20 lines
412 B
Makefile
20 lines
412 B
Makefile
|
PREFIX ?= /usr/local
|
||
|
|
||
|
BUILD = target/release/exa
|
||
|
|
||
|
$(BUILD):
|
||
|
@which rustc > /dev/null || { echo "Exa requires Rust-lang to compile. For installation instructions, please visit http://rust-lang.org/"; exit 1; }
|
||
|
cargo build --release
|
||
|
|
||
|
build: $(BUILD)
|
||
|
|
||
|
INSTALL = $(PREFIX)/bin/exa
|
||
|
|
||
|
$(INSTALL):
|
||
|
cp target/release/exa $(PREFIX)/bin/
|
||
|
cp man/*.1 $(PREFIX)/share/man/man1/
|
||
|
|
||
|
install: build $(INSTALL)
|
||
|
|
||
|
.PHONY: install
|