summaryrefslogtreecommitdiff
path: root/apps/plugins/Makefile
diff options
context:
space:
mode:
authorBarry Wardell <rockbox@barrywardell.net>2006-09-29 20:04:36 +0000
committerBarry Wardell <rockbox@barrywardell.net>2006-09-29 20:04:36 +0000
commitce74dc074355dcf8db9bd0c09ee2624089d3c3e7 (patch)
tree423ac7b5e98b4d7754e48b950160f638471c4ac8 /apps/plugins/Makefile
parent64f949f2954db85968850f6e157e5c3b10df6b7d (diff)
downloadrockbox-ce74dc074355dcf8db9bd0c09ee2624089d3c3e7.tar.gz
rockbox-ce74dc074355dcf8db9bd0c09ee2624089d3c3e7.zip
Cleaner implementation of the recent OSX simulator build fix. No need to define SHARED_FLAG in each Makefile. Just have configure create it in the root Makefile instead.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11095 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/Makefile')
-rw-r--r--apps/plugins/Makefile6
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile
index adc7895da0..975aa7106c 100644
--- a/apps/plugins/Makefile
+++ b/apps/plugins/Makefile
@@ -13,12 +13,6 @@ INCLUDES = $(TARGET_INC) -I$(FIRMDIR)/include -I$(FIRMDIR)/export -I$(FIRMDIR)/c
13CFLAGS = $(INCLUDES) $(GCCOPTS) $(TARGET) $(EXTRA_DEFINES) \ 13CFLAGS = $(INCLUDES) $(GCCOPTS) $(TARGET) $(EXTRA_DEFINES) \
14 -DTARGET_ID=$(TARGET_ID) -DMEM=${MEMORYSIZE} -DPLUGIN 14 -DTARGET_ID=$(TARGET_ID) -DMEM=${MEMORYSIZE} -DPLUGIN
15 15
16ifeq ($(UNAME), Darwin)
17SHARED_FLAG=-dynamiclib -Wl,-single_module
18else
19SHARED_FLAG=-shared
20endif
21
22ifdef APPEXTRA 16ifdef APPEXTRA
23 INCLUDES += $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA))) 17 INCLUDES += $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA)))
24endif 18endif