From d35fa1b28d77fe5f4191e5b22264db2c32cb48cd Mon Sep 17 00:00:00 2001
From: Albert Graef <aggraef@gmail.com>
Date: Sat, 10 Mar 2018 19:23:51 +0100
Subject: [PATCH] Add the install prefix (only used on Linux) to the toplevel
 Makefile.

---
 Makefile | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 372cfec55..c4bb45e28 100644
--- a/Makefile
+++ b/Makefile
@@ -49,11 +49,21 @@
 
 .PHONY: all incremental checkout clean realclean dist
 
+# Installation prefix under which Pd-l2ork is installed (Linux only). If this
+# isn't set, a default location will be used (usually /usr/local). NOTE: The
+# default prefs file assumes /usr, if you choose anything else then you'll
+# have to edit $prefix/lib/pd-l2ork/default.settings accordingly.
+prefix = /usr
+
+ifneq ($(prefix),)
+env = inst_dir="$(prefix)"
+endif
+
 all:
-	cd l2ork_addons && ./tar_em_up.sh -Tk
+	cd l2ork_addons && $(env) ./tar_em_up.sh -Tk
 
 incremental:
-	cd l2ork_addons && ./tar_em_up.sh -tk
+	cd l2ork_addons && $(env) ./tar_em_up.sh -tk
 
 checkout:
 	git submodule update --init
-- 
GitLab