aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-11-22 23:03:58 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-11-22 23:03:58 +0000
commit7342d7ce4ad2936f6b7df18c4d3d01ac868f0e0c (patch)
tree2260054b9f9c1a22edb031101314b4bdf6f28e39
parent6ed61905337950f13f18df21e4c46f226f31f7c4 (diff)
moved -DPD to the CFLAGS += section so that CFLAGS can be more easily overridden
svn path=/trunk/externals/vbap/; revision=14498
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index dcb396d..d484487 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@ EXTRA_DIST = define_loudspeakers.h max2pd.h vbap.h makefile.irix so_locations
#
#------------------------------------------------------------------------------#
-CFLAGS = -DPD -I"$(PD_INCLUDE)/pd" -Wall -W -g
+CFLAGS = -I"$(PD_INCLUDE)/pd" -Wall -W -g
LDFLAGS =
LIBS =
@@ -44,7 +44,7 @@ LIBS =
# get library version from meta file
LIBRARY_VERSION = $(shell sed -n 's|^\#X text [0-9][0-9]* [0-9][0-9]* VERSION \(.*\);|\1|p' $(LIBRARY_NAME)-meta.pd)
-CFLAGS += -DVERSION='"$(LIBRARY_VERSION)"'
+CFLAGS += -DPD -DVERSION='"$(LIBRARY_VERSION)"'
PD_INCLUDE = $(PD_PATH)/include
# where to install the library, overridden below depending on platform