diff options
| author | Dave Chapman <dave@dchapman.com> | 2011-02-27 11:37:39 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2011-02-27 11:37:39 +0000 |
| commit | 376c9f3ad0c257ee97d7eba03962f232e85b36a7 (patch) | |
| tree | 3323dfd60b82814af115b4c436ea8680ca9da978 /uisimulator | |
| parent | 9501986047056c9f6ca954817ae597e302028f2e (diff) | |
| download | rockbox-376c9f3ad0c257ee97d7eba03962f232e85b36a7.zip rockbox-376c9f3ad0c257ee97d7eba03962f232e85b36a7.tar.gz rockbox-376c9f3ad0c257ee97d7eba03962f232e85b36a7.tar.bz2 rockbox-376c9f3ad0c257ee97d7eba03962f232e85b36a7.tar.xz | |
FS#11966 - use separate modelnames and config files for RaaA. This adds an APPLICATION define that can be used in Makefiles, and target-name defines (-DSDLAPP, -DANDROID, -DNOKIAN8XX and -DNOKIAN900) for use elsewhere. LCD size is now hard-coded for the Nokia builds in their config files. A new --app parameter is passed to buildzip.pl to explicitly state that this is an application build - it was previously derived from the model name.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29418 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
| -rw-r--r-- | uisimulator/uisimulator.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/uisimulator.make b/uisimulator/uisimulator.make index dcbd799..d30a9db 100644 --- a/uisimulator/uisimulator.make +++ b/uisimulator/uisimulator.make @@ -18,7 +18,7 @@ SIMOBJ = $(call c2obj,$(SIMSRC)) OTHER_SRC += $(SIMSRC) SIMLIB = $(BUILDDIR)/uisimulator/libuisimulator.a -ifeq ($(MODELNAME), application) +ifeq (yes,$(APPLICATION)) UIBMP= else UIBMP=$(BUILDDIR)/UI256.bmp |