d73bfd1a42
This should shut up a lot of the sim build failures Change-Id: Ieaa387585cb8ca0f8b2faff24c08aad9451b28ce
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id$
|
|
#
|
|
|
|
PDBOXSRCDIR := $(APPSDIR)/plugins/pdbox
|
|
PDBOXBUILDDIR := $(BUILDDIR)/apps/plugins/pdbox
|
|
|
|
ROCKS += $(PDBOXBUILDDIR)/pdbox.rock
|
|
|
|
PDBOX_SRC := $(call preprocess, $(PDBOXSRCDIR)/SOURCES)
|
|
PDBOX_OBJ := $(call c2obj, $(PDBOX_SRC))
|
|
|
|
# add source files to OTHERSRC to get automatic dependencies
|
|
OTHER_SRC += $(PDBOX_SRC)
|
|
|
|
$(PDBOXBUILDDIR)/pdbox.rock: $(PDBOX_OBJ) $(MPEG_OBJ)
|
|
|
|
PDBOXFLAGS = $(PLUGINFLAGS) -fno-strict-aliasing -Wno-cast-function-type
|
|
PDBOXLDFLAGS = $(PLUGINLDFLAGS)
|
|
ifdef APP_TYPE
|
|
PDBOXLDFLAGS += -lm
|
|
endif
|
|
|
|
# Disable stringop-truncation warnings on GCC 8 or greater
|
|
ifeq ($(shell expr $(GCCNUM) \> 800),1)
|
|
PDBOXFLAGS += -Wno-stringop-truncation
|
|
endif
|
|
|
|
|
|
$(PDBOXBUILDDIR)/pdbox.rock: $(PDBOX_OBJ) $(TLSFLIB)
|
|
|
|
# Compile PDBox with extra flags (adapted from ZXBox)
|
|
$(PDBOXBUILDDIR)/%.o: $(PDBOXSRCDIR)/%.c $(PDBOXSRCDIR)/pdbox.make
|
|
$(SILENT)mkdir -p $(dir $@)
|
|
$(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) -I$(dir $<) $(PDBOXFLAGS) -c $< -o $@
|