From 6e4ee06bb0d0152fcaf278d93a5be3ab90639a89 Mon Sep 17 00:00:00 2001 From: Joey Schulze Date: Mon, 13 Nov 2006 18:08:21 +0000 Subject: [PATCH] Correct use of prefix variable --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f056071..a55ae9f 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +prefix = /usr + SOURCE = $(wildcard *.c) OBJS = $(SOURCE:%.c=%.o) @@ -28,5 +30,5 @@ clean: rm -f newmail $(OBJS) *~ install: newmail - install -s -o root -g root -m 755 newmail $(prefix)/usr/bin - install -o root -g root -m 644 newmail.1 $(prefix)/usr/share/man/man1 + install -s -o root -g root -m 755 newmail $(prefix)/bin + install -o root -g root -m 644 newmail.1 $(prefix)/share/man/man1 -- 2.20.1