From a5e2c4eea99dbfb00b081a75d983ee2b3c8f2759 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Thu, 10 Sep 2015 18:32:13 +0000 Subject: set PD_INCLUDE to a proper default to allow building without having PD_INCLUDE set to anything svn path=/trunk/externals/miXed/; revision=17561 --- Makefile.common | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.common b/Makefile.common index 1af1db7..8298bed 100644 --- a/Makefile.common +++ b/Makefile.common @@ -1,5 +1,6 @@ # next line has to be edited manually PD_DIR ?= $(ROOT_DIR)/../../pd/src +PD_INCLUDE = $(PD_DIR) OS_NAME = $(shell uname -s) @@ -85,7 +86,7 @@ OUT_DIR = $(if $($1_SUBDIR),$(BIN_DIR)/$($1_SUBDIR),$(BIN_DIR)) BASE_DIR = $(shell basename `pwd`) BASE_NAME = $(shell basename `pwd` | awk -F - '{print $$1}') -INCLUDES = -I. -I$(PD_DIR) -I$(SHARED_DIR) -I"$(PD_INCLUDE)" +INCLUDES = -I. -I$(PD_DIR) -I$(PD_INCLUDE) -I$(SHARED_DIR) ifdef CAML_TYPES include $(ROOT_DIR)/Makefile.caml -- cgit v1.2.1