From 261e3aecf11ea4b1c095fa728928504c70e97afe Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Fri, 6 Apr 2007 13:20:52 +0200 Subject: Makefile: s/DESTDIR/prefix/ which is more intuitive --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1486fc8..7013636 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,9 @@ VERSION = 0.2 # Paths -DESTDIR = /usr/local -BINDIR = $(DESTDIR)/bin -MANDIR = $(DESTDIR)/share/man/man1 +prefix = /usr/local +BINDIR = $(prefix)/bin +MANDIR = $(prefix)/share/man/man1 CC := gcc CFLAGS := $(CFLAGS) -W -Wall -pipe -D_USE_SOURCE -DVERSION="\"$(VERSION)\"" \ -- cgit v1.2.3-54-g00ecf