From 31b5c471aeec6040ca69e3bea59c0825e2a6fc9d Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Tue, 6 Jul 2010 15:11:56 +0000 Subject: Rockbox as an application: Add an 320x240 SDL application target. It still works mostly like the simulator. There's also some minor left overs from the sim, but it does not define SIMULATOR. It installs into the current (build) dir, and you need to run it with '--root .' (because it looks for ./.rockbox and not ./simdisk/rockbox) as options. That's one of the few kludges left that should be resolved soon'ish. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27310 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/uisimulator.make | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'uisimulator/uisimulator.make') diff --git a/uisimulator/uisimulator.make b/uisimulator/uisimulator.make index 7efffe9b6c..b06b48c0d2 100644 --- a/uisimulator/uisimulator.make +++ b/uisimulator/uisimulator.make @@ -18,7 +18,11 @@ SIMOBJ = $(call c2obj,$(SIMSRC)) OTHER_SRC += $(SIMSRC) SIMLIB = $(BUILDDIR)/uisimulator/libuisimulator.a -UIBMP = $(BUILDDIR)/UI256.bmp +ifeq ($(MODELNAME), application) +UIBMP= +else +UIBMP=$(BUILDDIR)/UI256.bmp +endif .SECONDEXPANSION: # $$(OBJ) is not populated until after this -- cgit