From: Francois Fleuret Date: Wed, 18 Mar 2009 14:03:14 +0000 (+0100) Subject: Patch from Mario del Pozo to add install/uninstall rules. Slightly X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=selector.git;a=commitdiff_plain;h=5563f83fdcff35ac43edd5e5de0a2f131d2c969d Patch from Mario del Pozo to add install/uninstall rules. Slightly edited. --- diff --git a/Makefile b/Makefile index 9838c51..bc925d0 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,9 @@ # along with selector. If not, see . # +BINARY_PATH = /usr/local/bin +MAN_PATH = /usr/share/man/man1 + LDFLAGS=-lcurses REVISION_NUMBER=$(shell git log | grep ^commit | wc -l) @@ -38,5 +41,14 @@ all: selector selector: selector.o $(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) +install: + install -m 755 selector $(BINARY_PATH) + install -m 644 selector.1 $(MAN_PATH) + gzip $(MAN_PATH)/selector.1 + +uninstall: + rm $(BINARY_PATH)/selector + rm $(MAN_PATH)/selector.1.gz + clean: rm -f *.o selector