From ec56ec7920e69fd59b3e7f535435b7af85313ca3 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 23 Apr 2010 07:38:36 +0000 Subject: Use INSTALL so people on Solaris can set it to ginstall. --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ba36e2fc..1c25d8ff 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.157 2010-04-21 21:22:06 nicm Exp $ +# $Id: Makefile,v 1.158 2010-04-23 07:38:36 nicm Exp $ # # Copyright (c) 2009 Nicholas Marriott # @@ -48,9 +48,10 @@ CFLAGS+= -Wno-pointer-sign .endif PREFIX?= /usr/local -INSTALLDIR= install -d -INSTALLBIN= install -m 555 -INSTALLMAN= install -m 444 +INSTALL?= install +INSTALLDIR= ${INSTALL} -d +INSTALLBIN= ${INSTALL} -m 555 +INSTALLMAN= ${INSTALL} -m 444 SRCS!= echo *.c|sed 's|osdep-[a-z0-9]*.c||g' .include "config.mk" -- cgit