summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2007-04-06 13:20:52 +0200
committerTobias Klauser <tklauser@xenon.tklauser.home>2007-04-06 13:20:52 +0200
commit261e3aecf11ea4b1c095fa728928504c70e97afe (patch)
tree1efabcec273a656f8298a5feaba9acdbc8287241
parent04a02e3a1afb06b17933f156c49e1ca9ef4313a9 (diff)
Makefile: s/DESTDIR/prefix/ which is more intuitive
-rw-r--r--Makefile6
1 files 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)\"" \