From 2fb51229570ecd48da7a94aac9580dfe5c806193 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Minier?= Date: Sat, 30 Jan 2010 14:43:07 +0100 Subject: Allow overriding install command --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 9b963b9..fca6304 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ -INSTALL_DIRECTORY=install -d -m 0755 -INSTALL_FILE=install -m 0644 -INSTALL_EXECUTABLE=install -m 0755 - +INSTALL = install +INSTALL_DIRECTORY = $(INSTALL) -d -m 0755 +INSTALL_FILE = $(INSTALL) -m 0644 +INSTALL_EXECUTABLE = $(INSTALL) -m 0755 # # To add new script, add it to here, so that it will be tested. And then add a rule to install: target. -- cgit v1.2.3