From 05451b7db877c62ec2bfbd8243aeaa69a7c7d88b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Andr=C3=A9e?= Date: Mon, 4 Jul 2016 13:48:07 +0200 Subject: [PATCH] Fix install rule and add uninstall rule MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index f96748c..d6f584c 100644 --- a/Makefile +++ b/Makefile @@ -18,14 +18,16 @@ build-no-git: env -u CC cargo build --release --no-default-features; \ fi -INSTALL = $(PREFIX)/bin/exa - -$(INSTALL): +install: target/release/exa # 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 -m644 -- contrib/man/exa.1 "$(DESTDIR)$(PREFIX)/share/man/man1/" -install: build $(INSTALL) +uninstall: + -rm -- "$(DESTDIR)$(PREFIX)/share/man/man1/exa.1" + -rmdir -- "$(DESTDIR)$(PREFIX)/share/man/man1" + -rm -- "$(DESTDIR)$(PREFIX)/bin/exa" + -rmdir -- "$(DESTDIR)$(PREFIX)/bin" -.PHONY: install +.PHONY: install uninstall