summaryrefslogtreecommitdiff
path: root/uisimulator/win32/Makefile
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-01-17 00:25:23 +0000
committerJens Arnold <amiconn@rockbox.org>2005-01-17 00:25:23 +0000
commit9f700acd0b9e2628e62910fe463c08365febe8f7 (patch)
tree9ac908f622c3a6b544d6b4f3381011bf459a3c6a /uisimulator/win32/Makefile
parent3d1ca9deb5439da170f206504945172b149ebabf (diff)
downloadrockbox-9f700acd0b9e2628e62910fe463c08365febe8f7.tar.gz
rockbox-9f700acd0b9e2628e62910fe463c08365febe8f7.zip
Win32 simulator extensions, based on patch #1041560 by Eric Lassauge: Background pictures, LCD colours and dimensions depending on unit; build uses language selected in configure. Fixed vertical window size.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5568 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32/Makefile')
-rw-r--r--uisimulator/win32/Makefile11
1 files changed, 7 insertions, 4 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index d04bf050ef..8509948457 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -55,8 +55,6 @@ no_configure:
55 @echo "http://rockbox.haxx.se/docs/how_to_compile.html" 55 @echo "http://rockbox.haxx.se/docs/how_to_compile.html"
56endif 56endif
57 57
58LANGUAGE = english
59
60DEFINES = -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR \ 58DEFINES = -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR \
61$(TARGET) -DAPPSVERSION=\"$(VERSION)\" $(EXTRA_DEFINES) 59$(TARGET) -DAPPSVERSION=\"$(VERSION)\" $(EXTRA_DEFINES)
62 60
@@ -146,14 +144,19 @@ clean:
146 $(OBJDIR)/lang.[cho] $(OBJDIR)/build.lang $(OBJDIR)/*.o \ 144 $(OBJDIR)/lang.[cho] $(OBJDIR)/build.lang $(OBJDIR)/*.o \
147 $(OBJDIR)/*.rock $(OBJDIR)/*.def $(OBJDIR)/sysfont.c \ 145 $(OBJDIR)/*.rock $(OBJDIR)/*.def $(OBJDIR)/sysfont.c \
148 $(OBJDIR)/credits.raw $(OBJDIR)/libplugin.a 146 $(OBJDIR)/credits.raw $(OBJDIR)/libplugin.a
147 $(RM) -f $(OBJDIR)/UI256.bmp
149 $(RM) -r $(DEPS) 148 $(RM) -r $(DEPS)
150 149
151################## Specific dependencies ################## 150################## Specific dependencies ##################
152$(OBJDIR)/credits.raw: $(DOCSDIR)/CREDITS 151$(OBJDIR)/credits.raw: $(DOCSDIR)/CREDITS
153 perl $(APPDIR)/credits.pl < $< > $@ 152 perl $(APPDIR)/credits.pl < $< > $@
154 153
155$(OBJDIR)/uisw32-res.o: uisw32.rc 154$(OBJDIR)/UI256.bmp: UI-$(ARCHOS).bmp
156 $(WINDRES) -i $< -o $@ 155 @echo UI
156 @cp $< $@
157
158$(OBJDIR)/uisw32-res.o: uisw32.rc $(OBJDIR)/UI256.bmp
159 $(WINDRES) -I$(OBJDIR) -i $< -o $@
157 160
158$(OBJDIR)/credits.o: $(APPDIR)/credits.c $(APPDIR)/credits.h $(OBJDIR)/credits.raw 161$(OBJDIR)/credits.o: $(APPDIR)/credits.c $(APPDIR)/credits.h $(OBJDIR)/credits.raw
159 162