summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/mpegplayer.make
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/mpegplayer.make')
-rw-r--r--apps/plugins/mpegplayer/mpegplayer.make7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/mpegplayer.make b/apps/plugins/mpegplayer/mpegplayer.make
index 2a39e7ddce..00a11f3ad4 100644
--- a/apps/plugins/mpegplayer/mpegplayer.make
+++ b/apps/plugins/mpegplayer/mpegplayer.make
@@ -18,7 +18,12 @@ MPEG_OBJ := $(call c2obj, $(MPEG_SRC))
18# add source files to OTHER_SRC to get automatic dependencies 18# add source files to OTHER_SRC to get automatic dependencies
19OTHER_SRC += $(MPEG_SRC) 19OTHER_SRC += $(MPEG_SRC)
20 20
21MPEGCFLAGS = $(PLUGINFLAGS) -fgnu89-inline 21# Set '-fgnu89-inline' if supported for the target.
22ifneq ($(CPU),mips)
23 MPEGCFLAGS = $(PLUGINFLAGS) -fgnu89-inline
24else
25 MPEGCFLAGS = $(PLUGINFLAGS)
26endif
22 27
23$(MPEGBUILDDIR)/mpegplayer.rock: $(MPEG_OBJ) $(CODECDIR)/libmad-mpeg.a 28$(MPEGBUILDDIR)/mpegplayer.rock: $(MPEG_OBJ) $(CODECDIR)/libmad-mpeg.a
24 29