2003-06-29 16:33:04 +00:00
|
|
|
# __________ __ ___.
|
|
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
# \/ \/ \/ \/ \/
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
|
2006-07-27 13:27:31 +00:00
|
|
|
INCLUDES = $(TARGET_INC) -I$(FIRMDIR)/include -I$(FIRMDIR)/export -I$(FIRMDIR)/common \
|
2006-02-21 01:23:30 +00:00
|
|
|
-I$(FIRMDIR)/drivers -I$(APPSDIR) -Ilib -I$(BUILDDIR) \
|
|
|
|
-I$(BUILDDIR)/pluginbitmaps
|
2006-02-24 13:48:52 +00:00
|
|
|
CFLAGS = $(INCLUDES) $(GCCOPTS) $(TARGET) $(EXTRA_DEFINES) \
|
2006-01-15 18:20:18 +00:00
|
|
|
-DTARGET_ID=$(TARGET_ID) -DMEM=${MEMORYSIZE} -DPLUGIN
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2004-09-22 08:58:50 +00:00
|
|
|
ifdef APPEXTRA
|
2005-10-27 14:39:00 +00:00
|
|
|
INCLUDES += $(patsubst %,-I$(APPSDIR)/%,$(subst :, ,$(APPEXTRA)))
|
2004-09-09 06:01:46 +00:00
|
|
|
endif
|
2004-07-08 13:12:16 +00:00
|
|
|
|
2005-02-16 01:38:22 +00:00
|
|
|
ifdef SOFTWARECODECS
|
2005-10-26 12:35:58 +00:00
|
|
|
CODECLIBS = -lmad -la52 -lffmpegFLAC -lTremor -lwavpack -lmusepack
|
2005-02-16 01:38:22 +00:00
|
|
|
endif
|
|
|
|
|
2006-01-22 21:30:32 +00:00
|
|
|
# Set up the bitmap libraries
|
2006-01-23 01:56:43 +00:00
|
|
|
BITMAPLIBS =
|
|
|
|
LINKBITMAPS =
|
|
|
|
ifneq ($(strip $(BMP2RB_MONO)),)
|
|
|
|
BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsmono.a
|
|
|
|
LINKBITMAPS += -lpluginbitmapsmono
|
|
|
|
endif
|
|
|
|
ifneq ($(strip $(BMP2RB_NATIVE)),)
|
|
|
|
BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsnative.a
|
|
|
|
LINKBITMAPS += -lpluginbitmapsnative
|
|
|
|
endif
|
|
|
|
ifneq ($(strip $(BMP2RB_REMOTEMONO)),)
|
|
|
|
BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsremotemono.a
|
|
|
|
LINKBITMAPS += -lpluginbitmapsremotemono
|
|
|
|
endif
|
|
|
|
ifneq ($(strip $(BMP2RB_REMOTENATIVE)),)
|
|
|
|
BITMAPLIBS += $(BUILDDIR)/libpluginbitmapsremotenative.a
|
|
|
|
LINKBITMAPS += -lpluginbitmapsremotenative
|
|
|
|
endif
|
2006-01-22 21:30:32 +00:00
|
|
|
|
2003-07-13 22:15:19 +00:00
|
|
|
LDS := plugin.lds
|
|
|
|
LINKFILE := $(OBJDIR)/pluginlink.lds
|
2004-09-22 08:58:50 +00:00
|
|
|
DEPFILE = $(OBJDIR)/dep-plugins
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2005-03-06 23:31:36 +00:00
|
|
|
# This sets up 'SRC' based on the files mentioned in SOURCES
|
|
|
|
include $(TOOLSDIR)/makesrc.inc
|
|
|
|
|
2006-04-01 13:32:16 +00:00
|
|
|
# This sets up 'SUBDIRS' based on the directories mentioned in SUBDIRS
|
|
|
|
include $(TOOLSDIR)/makesubdirs.inc
|
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
ROCKS := $(SRC:%.c=$(OBJDIR)/%.rock)
|
2004-09-22 08:58:50 +00:00
|
|
|
SOURCES = $(SRC)
|
|
|
|
ELFS := $(SRC:%.c=$(OBJDIR)/%.elf)
|
|
|
|
OBJS := $(SRC:%.c=$(OBJDIR)/%.o)
|
2005-02-18 13:47:17 +00:00
|
|
|
# as created by the cross-compiler for win32:
|
|
|
|
DEFS := $(SRC:%.c=$(OBJDIR)/%.def)
|
2004-09-22 08:58:50 +00:00
|
|
|
DIRS = .
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2005-03-02 23:49:38 +00:00
|
|
|
.PHONY: $(SUBDIRS)
|
2006-02-09 04:27:57 +00:00
|
|
|
all: $(BUILDDIR)/libplugin.a $(ROCKS) $(SUBDIRS) $(DEPFILE)
|
2004-09-22 21:40:45 +00:00
|
|
|
|
2006-02-21 01:23:30 +00:00
|
|
|
$(DEPFILE): $(BITMAPLIBS)
|
|
|
|
|
|
|
|
dep: $(DEPFILE)
|
|
|
|
|
2006-01-16 22:45:44 +00:00
|
|
|
$(BUILDDIR)/credits.raw: $(DOCSDIR)/CREDITS
|
2006-10-27 21:48:06 +00:00
|
|
|
$(call PRINTS,create credits.raw)perl credits.pl < $< > $@
|
2005-09-02 05:39:09 +00:00
|
|
|
|
2006-01-16 22:45:44 +00:00
|
|
|
$(OBJDIR)/credits.o: credits.c $(BUILDDIR)/credits.raw
|
2006-02-09 04:27:57 +00:00
|
|
|
$(SILENT)mkdir -p $(dir $@)
|
2006-10-27 21:48:06 +00:00
|
|
|
$(call PRINTS,CC $(<F))$(CC) $(CFLAGS) -I$(OBJDIR) -c $< -o $@
|
2005-09-02 05:39:09 +00:00
|
|
|
|
2006-10-27 21:48:06 +00:00
|
|
|
build-bitmapsmono:
|
|
|
|
$(call PRINTS,MAKE in plugins/bitmaps/mono)$(MAKE) -C bitmaps/mono OBJDIR=$(OBJDIR)/bitmaps/mono
|
2006-02-09 04:27:57 +00:00
|
|
|
|
2006-10-27 21:48:06 +00:00
|
|
|
build-bitmapsnative:
|
|
|
|
$(call PRINTS,MAKE in plugins/bitmaps/native)$(MAKE) -C bitmaps/native OBJDIR=$(OBJDIR)/bitmaps/native
|
|
|
|
|
|
|
|
build-bitmapsremotemono:
|
|
|
|
$(call PRINTS,MAKE in plugins/bitmaps/remote_mono)$(MAKE) -C bitmaps/remote_mono OBJDIR=$(OBJDIR)/bitmaps/remote_mono
|
|
|
|
|
|
|
|
build-bitmapsremotenative:
|
|
|
|
$(call PRINTS,MAKE in plugins/bitmaps/remote_native)$(MAKE) -C bitmaps/remote_native OBJDIR=$(OBJDIR)/bitmaps/remote_native
|
|
|
|
|
|
|
|
$(BITMAPLIBS): $(BUILDDIR)/libplugin%.a: build-%
|
2006-01-26 11:57:53 +00:00
|
|
|
|
2005-02-18 13:47:17 +00:00
|
|
|
ifndef SIMVER
|
2006-01-22 21:30:32 +00:00
|
|
|
$(OBJDIR)/%.elf: $(OBJDIR)/%.o $(LINKFILE) $(BUILDDIR)/libplugin.a $(BITMAPLIBS)
|
2007-02-15 20:28:08 +00:00
|
|
|
$(call PRINTS,LD $(@F))$(CC) $(CFLAGS) -o $@ $< -L$(BUILDDIR) $(CODECLIBS) -lplugin $(LINKBITMAPS) -lgcc \
|
|
|
|
-T$(LINKFILE) -Wl,--gc-sections -Wl,-Map,$(OBJDIR)/$*.map
|
2003-06-29 16:33:04 +00:00
|
|
|
|
|
|
|
$(OBJDIR)/%.rock : $(OBJDIR)/%.elf
|
2006-10-27 21:48:06 +00:00
|
|
|
$(call PRINTS,OBJCOPY $(@F))$(OC) -O binary $< $@
|
2005-02-18 13:47:17 +00:00
|
|
|
else
|
|
|
|
|
|
|
|
ifeq ($(SIMVER), x11)
|
|
|
|
###################################################
|
|
|
|
# This is the X11 simulator version
|
|
|
|
|
2006-02-09 05:28:17 +00:00
|
|
|
$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(BUILDDIR)/libplugin.a $(BITMAPLIBS)
|
2006-10-27 21:48:06 +00:00
|
|
|
$(call PRINTS,LD $(@F))$(CC) $(CFLAGS) $(SHARED_FLAG) $< -L$(BUILDDIR) $(CODECLIBS) -lplugin $(LINKBITMAPS) -o $@
|
2005-02-22 20:00:19 +00:00
|
|
|
ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
|
2005-02-18 13:47:17 +00:00
|
|
|
# 'x' must be kept or you'll have "Win32 error 5"
|
|
|
|
# $ fgrep 5 /usr/include/w32api/winerror.h | head -1
|
|
|
|
# #define ERROR_ACCESS_DENIED 5L
|
|
|
|
else
|
2006-02-09 04:27:57 +00:00
|
|
|
$(SILENT)chmod -x $@
|
2005-02-18 13:47:17 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
else # end of x11-simulator
|
2006-01-09 11:22:36 +00:00
|
|
|
ifeq ($(SIMVER), sdl)
|
|
|
|
###################################################
|
|
|
|
# This is the SDL simulator version
|
|
|
|
|
2006-02-09 05:28:17 +00:00
|
|
|
$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(BUILDDIR)/libplugin.a $(BITMAPLIBS)
|
2006-10-27 21:48:06 +00:00
|
|
|
$(call PRINTS,LD $(@F))$(CC) $(CFLAGS) $(SHARED_FLAG) $< -L$(BUILDDIR) $(CODECLIBS) -lplugin $(LINKBITMAPS) -o $@
|
2006-01-09 11:22:36 +00:00
|
|
|
ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
|
|
|
|
# 'x' must be kept or you'll have "Win32 error 5"
|
|
|
|
# $ fgrep 5 /usr/include/w32api/winerror.h | head -1
|
|
|
|
# #define ERROR_ACCESS_DENIED 5L
|
|
|
|
else
|
2006-02-09 04:27:57 +00:00
|
|
|
$(SILENT)chmod -x $@
|
2006-01-09 11:22:36 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
else # end of sdl-simulator
|
2005-02-18 13:47:17 +00:00
|
|
|
###################################################
|
|
|
|
# This is the win32 simulator version
|
|
|
|
DLLTOOLFLAGS = --export-all
|
|
|
|
DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin
|
|
|
|
|
2006-02-09 05:28:17 +00:00
|
|
|
$(OBJDIR)/%.rock : $(OBJDIR)/%.o $(BUILDDIR)/libplugin.a $(BITMAPLIBS)
|
2006-10-27 21:48:06 +00:00
|
|
|
$(call PRINTS,DLL $(@F))$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $<
|
2006-02-09 04:27:57 +00:00
|
|
|
$(SILENT)$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $< $(BUILDDIR)/libplugin.a $(BITMAPLIBS) \
|
2005-05-07 22:41:17 +00:00
|
|
|
$(patsubst -l%,$(BUILDDIR)/lib%.a,$(CODECLIBS)) -o $@
|
2005-02-22 20:00:19 +00:00
|
|
|
ifeq ($(findstring CYGWIN,$(UNAME)),CYGWIN)
|
2005-02-22 12:19:12 +00:00
|
|
|
# 'x' must be kept or you'll have "Win32 error 5"
|
|
|
|
# $ fgrep 5 /usr/include/w32api/winerror.h | head -1
|
|
|
|
# #define ERROR_ACCESS_DENIED 5L
|
|
|
|
else
|
2006-02-09 04:27:57 +00:00
|
|
|
$(SILENT)chmod -x $@
|
2005-02-22 12:19:12 +00:00
|
|
|
endif
|
2005-02-18 13:47:17 +00:00
|
|
|
endif # end of win32-simulator
|
2006-01-09 11:22:36 +00:00
|
|
|
endif
|
2005-02-18 13:47:17 +00:00
|
|
|
|
|
|
|
endif # end of simulator section
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2004-09-22 08:58:50 +00:00
|
|
|
include $(TOOLSDIR)/make.inc
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2005-05-07 22:41:17 +00:00
|
|
|
$(BUILDDIR)/libplugin.a:
|
2005-12-13 10:56:28 +00:00
|
|
|
$(SILENT)mkdir -p $(OBJDIR)/lib
|
2006-10-27 21:48:06 +00:00
|
|
|
$(call PRINTS,MAKE in plugin/lib)$(MAKE) -C lib OBJDIR=$(OBJDIR)/lib
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2003-07-13 22:15:19 +00:00
|
|
|
$(LINKFILE): $(LDS)
|
2006-10-27 21:48:06 +00:00
|
|
|
$(call PRINTS,build $(@F))cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARGET) $(DEFINES) -E -P - >$@
|
2003-07-13 22:15:19 +00:00
|
|
|
|
2006-02-23 10:02:48 +00:00
|
|
|
$(SUBDIRS): $(BITMAPLIBS)
|
2005-12-13 10:56:28 +00:00
|
|
|
$(SILENT)mkdir -p $(OBJDIR)/$@
|
2006-10-27 21:48:06 +00:00
|
|
|
$(call PRINTS,MAKE in $@)$(MAKE) -C $@ OUTDIR=$(OBJDIR) OBJDIR=$(OBJDIR)/$@ \
|
2006-02-23 10:02:48 +00:00
|
|
|
LINKBITMAPS="$(LINKBITMAPS)" BITMAPLIBS="$(BITMAPLIBS)"
|
2005-03-02 23:49:38 +00:00
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
clean:
|
2006-10-27 21:48:06 +00:00
|
|
|
$(call PRINTS,cleaning plugins)rm -f $(ROCKS) $(LINKFILE) $(OBJDIR)/*.rock $(DEPFILE) $(ELFS) \
|
2005-09-02 05:39:09 +00:00
|
|
|
$(BUILDDIR)/credits.raw $(OBJS) $(DEFS)
|
2006-02-09 04:27:57 +00:00
|
|
|
$(SILENT)$(MAKE) -C lib clean OBJDIR=$(OBJDIR)/lib
|
|
|
|
$(SILENT)$(MAKE) -C bitmaps/mono clean OBJDIR=$(OBJDIR)/bitmaps/mono
|
|
|
|
$(SILENT)$(MAKE) -C bitmaps/native clean OBJDIR=$(OBJDIR)/bitmaps/native
|
|
|
|
$(SILENT)$(MAKE) -C bitmaps/remote_mono clean OBJDIR=$(OBJDIR)/bitmaps/remote_mono
|
|
|
|
$(SILENT)$(MAKE) -C bitmaps/remote_native clean OBJDIR=$(OBJDIR)/bitmaps/remote_native
|
|
|
|
$(SILENT)$(MAKE) -C rockboy clean OBJDIR=$(OBJDIR)/rockboy
|
|
|
|
$(SILENT)$(MAKE) -C searchengine clean OBJDIR=$(OBJDIR)/searchengine
|
2006-02-21 01:23:30 +00:00
|
|
|
@rm -rf $(BUILDDIR)/pluginbitmaps
|
2004-09-22 21:40:45 +00:00
|
|
|
|
|
|
|
-include $(DEPFILE)
|