diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2013-01-24 16:01:28 +0100 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2013-01-24 16:06:45 +0100 |
| commit | 1501df045f75b1ee607b49ce2f970c762a2538a4 (patch) | |
| tree | 2cc1515e773eac5efd9a771a3bdcc93ec2d3c1c9 /apps/plugins | |
| parent | 02a90890343a75ca71169f601605613607e450ea (diff) | |
| download | rockbox-1501df045f75b1ee607b49ce2f970c762a2538a4.zip rockbox-1501df045f75b1ee607b49ce2f970c762a2538a4.tar.gz rockbox-1501df045f75b1ee607b49ce2f970c762a2538a4.tar.bz2 rockbox-1501df045f75b1ee607b49ce2f970c762a2538a4.tar.xz | |
Deprecate the EXTRA_LIBS variable.
Instead specify explicit library dependencies for codecs and plugins.
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/mikmod/mikmod.make | 2 | ||||
| -rw-r--r-- | apps/plugins/pdbox/pdbox.make | 2 | ||||
| -rw-r--r-- | apps/plugins/plugins.make | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/mikmod/mikmod.make b/apps/plugins/mikmod/mikmod.make index 38a95c3..016b054 100644 --- a/apps/plugins/mikmod/mikmod.make +++ b/apps/plugins/mikmod/mikmod.make @@ -20,7 +20,7 @@ OTHER_SRC += $(MIKMOD_SRC) MIKMODCFLAGS = $(PLUGINFLAGS) -I$(MIKMODSRCDIR) -O2 -$(MIKMODBUILDDIR)/mikmod.rock: $(MIKMOD_OBJ) +$(MIKMODBUILDDIR)/mikmod.rock: $(MIKMOD_OBJ) $(TLSFLIB) # new rule needed to use extra compile flags $(MIKMODBUILDDIR)/%.o: $(MIKMODSRCDIR)/%.c diff --git a/apps/plugins/pdbox/pdbox.make b/apps/plugins/pdbox/pdbox.make index e0cbaef..e95cdba 100644 --- a/apps/plugins/pdbox/pdbox.make +++ b/apps/plugins/pdbox/pdbox.make @@ -26,7 +26,7 @@ ifdef APP_TYPE PDBOXLDFLAGS += -lm endif -$(PDBOXBUILDDIR)/pdbox.rock: $(PDBOX_OBJ) +$(PDBOXBUILDDIR)/pdbox.rock: $(PDBOX_OBJ) $(TLSFLIB) # Compile PDBox with extra flags (adapted from ZXBox) $(PDBOXBUILDDIR)/%.o: $(PDBOXSRCDIR)/%.c $(PDBOXSRCDIR)/pdbox.make diff --git a/apps/plugins/plugins.make b/apps/plugins/plugins.make index 12344ae..0fc8ba7 100644 --- a/apps/plugins/plugins.make +++ b/apps/plugins/plugins.make @@ -53,7 +53,7 @@ else PLUGINSUBDIRS := $(call preprocess, $(APPSDIR)/plugins/SUBDIRS) endif -PLUGIN_LIBS := $(EXTRA_LIBS) $(PLUGINLIB) $(PLUGINBITMAPLIB) +PLUGIN_LIBS := $(PLUGINLIB) $(PLUGINBITMAPLIB) $(SETJMPLIB) # include <dir>.make from each subdir (yay!) $(foreach dir,$(PLUGINSUBDIRS),$(eval include $(dir)/$(notdir $(dir)).make)) |