aboutsummaryrefslogtreecommitdiff
path: root/externals/build/darwin
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-26 04:20:39 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-26 04:20:39 +0000
commit6b9e94c4a76ff641f64c822e9c717781b9ba3543 (patch)
tree02ec92b96b2302af84c2e29c84abf20cd7044e62 /externals/build/darwin
parent6c271c12023d3aff3e5043a456b156b68042738d (diff)
updated names to be more GNU-like and easier to read
svn path=/trunk/; revision=4036
Diffstat (limited to 'externals/build/darwin')
-rw-r--r--externals/build/darwin/makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/externals/build/darwin/makefile b/externals/build/darwin/makefile
index bb32bfba..6fce2309 100644
--- a/externals/build/darwin/makefile
+++ b/externals/build/darwin/makefile
@@ -2,8 +2,8 @@
CWD := $(shell pwd)
# these are setup to be overridden by the packages/Makefile
-SRC_ROOT_DIR = $(CWD)/../../..
-INSTALL_PREFIX = build
+cvs_root_dir = $(CWD)/../../..
+prefix = build
BUILDLAYOUT_DIR = $(CWD)/../..
all: externals
@@ -12,12 +12,12 @@ all: externals
include $(BUILDLAYOUT_DIR)/Makefile.buildlayout
-BUILD_SRC = $(EXTERNALS_SRC)/build/src
-BUILD_DARWIN_SRC = $(EXTERNALS_SRC)/build/darwin
+BUILD_SRC = $(externals_src)/build/src
+BUILD_DARWIN_SRC = $(externals_src)/build/darwin
EXTERNALS = $(shell ls -1 $(BUILD_SRC) | grep -e '.*\.c$$')
-PDEXECUTABLE = $(PD_SRC)/bin/pd
+PDEXECUTABLE = $(pd_src)/bin/pd
## These generally need gcc-3.3
# Generic PowerPC
@@ -33,7 +33,7 @@ OPTIM_FLAGS = -mpowerpc-gpopt -mcpu=750
CFLAGS = -DPD -DUNIX -DMACOSX -Dunix $(OPTIM_FLAGS) \
-Wall -W -Wno-unused -Wno-parentheses -Wno-switch -Wno-shadow
-INCLUDES = -I$(PD_SRC)/src -I/sw/include
+INCLUDES = -I$(pd_src)/src -I/sw/include
LDFLAGS = -bundle -bundle_loader $(PDEXECUTABLE) -L/sw/lib
externals: $(EXTERNALS:.c=.pd_darwin)