aboutsummaryrefslogtreecommitdiff
path: root/externals/Makefile
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-28 06:54:19 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-28 06:54:19 +0000
commit8bdf80c000c87bdab993292ec0d995e51d4b61fc (patch)
treec0bab08aaac071bad8da9b449cb3cb2a1b40f4d0 /externals/Makefile
parentc6102e81254e2ecd8286a58aa847bf2570c265aa (diff)
- finally got a Linux Pd-extended release out, RC5
- built a tar.bz2 package maker with a generated Makefile for installing and uninstalling - switched all Makefiles to follow GNU $(DESTDIR)/$(prefix) standards svn path=/trunk/; revision=4066
Diffstat (limited to 'externals/Makefile')
-rw-r--r--externals/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/externals/Makefile b/externals/Makefile
index 5fcee3ba..8aa76724 100644
--- a/externals/Makefile
+++ b/externals/Makefile
@@ -12,7 +12,7 @@ CWD := $(shell pwd)
# these are setup to be overridden by the packages/Makefile
cvs_root_dir = $(CWD)/..
-prefix = $(CWD)/build
+DESTDIR = $(CWD)/build/
BUILDLAYOUT_DIR = $(CWD)
# default target
@@ -28,6 +28,7 @@ include $(BUILDLAYOUT_DIR)/Makefile.buildlayout
# output to the same directory tree
DEST_PATHS = BUILDLAYOUT_DIR=$(BUILDLAYOUT_DIR) \
cvs_root_dir=$(cvs_root_dir) \
+ DESTDIR=$(DESTDIR) \
prefix=$(prefix)
#==============================================================================#