From 2451dffbb7f7d385310d084ee478e521b710e5c9 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 22 Aug 2006 23:57:20 +0200 Subject: Correctly set and handle $prefix and $DESTDIR --- Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 66ea46c..2f37ce7 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,7 @@ VERSION = 0.1 # Paths -prefix = $(HOME) -BINDIR = $(prefix)/bin -MANDIR = $(prefix)/share/man +prefix = /usr DESTDIR = CC := gcc @@ -28,8 +26,8 @@ inotail: inotail.o $(CC) $(CFLAGS) -c $< -o $@ install: inotail - install -m 775 -D inotail $(DESTDIR)$(BINDIR) - install -m 644 -D inotail.1 $(DESTDIR)$(MANDIR)/man1/inotail.1 + install -m 775 -D inotail $(DESTDIR)$(prefix)/bin/inotail + install -m 644 -D inotail.1 $(DESTDIR)$(prefix)/share/man1/inotail.1 cscope: cscope -b -- cgit v1.2.3-54-g00ecf