summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 58ec17667047a67fcc93c87b1be362952449d899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
PREFIX ?= /usr/local

BUILD = target/release/exa

$(BUILD):
	@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)

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):
	install -Dsm755 target/release/exa $(PREFIX)/bin/
	install -Dm644 contrib/man/*.1 -t $(PREFIX)/share/man/man1/

install: build $(INSTALL)

.PHONY: install