diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2006-08-22 23:57:20 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2006-08-22 23:57:20 +0200 |
commit | 2451dffbb7f7d385310d084ee478e521b710e5c9 (patch) | |
tree | c08f1707fe0eefef23686fe0f10605a7827b623d /Makefile | |
parent | d6c08be03ce12e077cca5c292e128913572578bc (diff) |
Correctly set and handle $prefix and $DESTDIR
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -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 |