diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2015-09-10 18:32:13 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2015-09-10 18:32:13 +0000 |
commit | a5e2c4eea99dbfb00b081a75d983ee2b3c8f2759 (patch) | |
tree | 7d85fdcea3d08f1c5f93a7f6059ccf8efd0fdf6e /Makefile.common | |
parent | 0aaeb0853ede1c3432545ab0c22eb737df0d9ff4 (diff) |
set PD_INCLUDE to a proper defaultHEADsvn2git-headexternals/miXed
to allow building without having PD_INCLUDE set to anything
svn path=/trunk/externals/miXed/; revision=17561
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 3 |
1 files changed, 2 insertions, 1 deletions
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 |