mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-12 07:26:31 +00:00
Makefile: be compatible with BSD and OS X
This commit is contained in:
parent
cc1594360a
commit
9eac99cfd8
6
Makefile
6
Makefile
@ -15,8 +15,10 @@ build-no-git:
|
||||
INSTALL = $(PREFIX)/bin/exa
|
||||
|
||||
$(INSTALL):
|
||||
install -Dsm755 target/release/exa $(PREFIX)/bin/
|
||||
install -Dm644 contrib/man/*.1 -t $(PREFIX)/share/man/man1/
|
||||
# BSD and OSX don't have -D to create leading directories
|
||||
install -dm755 $(PREFIX)/bin/ $(PREFIX)/share/man/man1/
|
||||
install -sm755 target/release/exa $(PREFIX)/bin/
|
||||
install -m644 contrib/man/*.1 $(PREFIX)/share/man/man1/
|
||||
|
||||
install: build $(INSTALL)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user