X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=c75369367214a420419db553df321b71a72bc3c2;hb=cda5c93df1c5cfe6f22a41e35bc1719a824d1e63;hp=9838c514d4e38d291a07c64b3486d02885c17a95;hpb=c7ba212093be8da9d393ad74eeaac47e11370db4;p=selector.git diff --git a/Makefile b/Makefile index 9838c51..c753693 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ # dynamic pattern-matching. # # Copyright (c) 2009 Francois Fleuret -# Written by Francois Fleuret +# Written by Francois Fleuret # # This file is part of selector. # @@ -21,9 +21,12 @@ # along with selector. If not, see . # +BINARY_PATH = /usr/bin +MAN_PATH = /usr/share/man/man1 + LDFLAGS=-lcurses -REVISION_NUMBER=$(shell git log | grep ^commit | wc -l) +REVISION_NUMBER=$(shell cat REVISION_NUMBER) ifeq ($(DEBUG),yes) OPTIMIZE_FLAG = -ggdb3 -DDEBUG @@ -38,5 +41,14 @@ all: selector selector: selector.o $(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) +install: selector + 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