diff options
author | Jens Arnold <amiconn@rockbox.org> | 2005-01-17 21:18:21 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2005-01-17 21:18:21 +0000 |
commit | 57c129f34d06367fe1b1088a321a7f65332db382 (patch) | |
tree | b77af568f5286ce5015a5eea5bc798d785d03f82 /uisimulator/win32 | |
parent | b3303d70224adc28a982fd6b9ba729b7f0934f41 (diff) |
Use the correct lcd code for iRiver simulator builds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5589 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32')
-rw-r--r-- | uisimulator/win32/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile index d97845e6f4..69e4281601 100644 --- a/uisimulator/win32/Makefile +++ b/uisimulator/win32/Makefile @@ -24,6 +24,7 @@ PLUGINDIR = $(APPDIR)/plugins SIMCOMMON = ../common ISONDIO := $(findstring ONDIO, $(TARGET)) +ISIRIVER := $(findstring IRIVER, $(TARGET)) ISPLAYER := $(findstring PLAYER, $(TARGET)) ifeq ($(ISPLAYER), PLAYER) MACHINEDIR = $(PLAYDIR) @@ -99,8 +100,12 @@ endif ifeq ($(ISPLAYER),PLAYER) LCDSRSC = lcd-playersim.c lcd-player.c lcd-player-charset.c font-player.c else +ifeq ($(ISIRIVER),IRIVER) + LCDSRSC = lcd-h100.c sysfont.c font.c +else LCDSRSC = lcd-recorder.c sysfont.c font.c endif +endif COMMONSRCS = io.c stubs.c lcd-common.c sim_icons.c fmradio.c FIRMSRCS = $(LCDSRSC) id3.c mp3data.c usb.c mpeg.c mp3_playback.c \ |