2008-11-20 11:27:31 +00:00
|
|
|
# __________ __ ___.
|
|
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
# \/ \/ \/ \/ \/
|
|
|
|
# $Id: Makefile 19082 2008-11-10 23:54:24Z zagor $
|
|
|
|
#
|
|
|
|
|
|
|
|
MIDISRCDIR := $(APPSDIR)/plugins/midi
|
|
|
|
MIDIBUILDDIR := $(BUILDDIR)/apps/plugins/midi
|
|
|
|
|
|
|
|
ROCKS += $(MIDIBUILDDIR)/midi.rock
|
|
|
|
|
|
|
|
MIDI_SRC := $(call preprocess, $(MIDISRCDIR)/SOURCES)
|
|
|
|
MIDI_OBJ := $(call c2obj, $(MIDI_SRC))
|
|
|
|
|
|
|
|
# add source files to OTHER_SRC to get automatic dependencies
|
|
|
|
OTHER_SRC += $(MIDI_SRC)
|
|
|
|
|
|
|
|
$(MIDIBUILDDIR)/midi.rock: $(MIDI_OBJ)
|
|
|
|
# for some reason, this doesn't match the implicit rule in plugins.make,
|
|
|
|
# so we have to duplicate the link command here
|
2008-11-20 14:17:09 +00:00
|
|
|
$(call PRINTS,LD $(@F))
|
2008-11-20 11:27:31 +00:00
|
|
|
$(SILENT)$(CC) $(PLUGINFLAGS) -o $*.elf \
|
|
|
|
$(filter %.o, $^) \
|
|
|
|
$(filter %.a, $^) \
|
|
|
|
-lgcc $(PLUGINLDFLAGS)
|
2008-11-20 14:17:09 +00:00
|
|
|
ifdef SIMVER
|
|
|
|
$(SILENT)cp $*.elf $@
|
|
|
|
else
|
|
|
|
$(SILENT)$(OC) -O binary $*.elf $@
|
|
|
|
endif
|