From 337581c040eb942a0dc81c8fb483ac28f5a8e38a Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Tue, 11 Jun 2013 10:09:59 -0400 Subject: allow overriding specific arguments without changing the Makefile for example, now you can do: make PREFIX=/usr without any modification to the Makefile and have it behave as intended. --- man/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'man') diff --git a/man/Makefile b/man/Makefile index 322d2f6..807c157 100644 --- a/man/Makefile +++ b/man/Makefile @@ -1,6 +1,6 @@ -INSTALL = install +INSTALL ?= install -PREFIX = /usr/local +PREFIX ?= /usr/local all: -- cgit v1.2.3