summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2006-08-22 23:57:20 +0200
committerTobias Klauser <tklauser@xenon.tklauser.home>2006-08-22 23:57:20 +0200
commit2451dffbb7f7d385310d084ee478e521b710e5c9 (patch)
treec08f1707fe0eefef23686fe0f10605a7827b623d
parentd6c08be03ce12e077cca5c292e128913572578bc (diff)
Correctly set and handle $prefix and $DESTDIR
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
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