summaryrefslogtreecommitdiff
path: root/uisimulator/win32/Makefile
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-10-02 16:33:26 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-10-02 16:33:26 +0000
commit0e6088fc9cdadbd488da990488944e177a19bfe5 (patch)
treef9492f273ded5089a43d81b8e5c79a6658a87227 /uisimulator/win32/Makefile
parent175747d0ec64afbef48025d9ec0cdc9f573d448d (diff)
downloadrockbox-0e6088fc9cdadbd488da990488944e177a19bfe5.tar.gz
rockbox-0e6088fc9cdadbd488da990488944e177a19bfe5.zip
Changed .eq file format to simple 'setting: value' model.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2478 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/win32/Makefile')
-rw-r--r--uisimulator/win32/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile
index ad0eb2df17..68e50223d0 100644
--- a/uisimulator/win32/Makefile
+++ b/uisimulator/win32/Makefile
@@ -63,7 +63,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mwindows
63APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows 63APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows
64 64
65FIRMSRCS = lcd-recorder.c power.c sprintf.c id3.c usb.c \ 65FIRMSRCS = lcd-recorder.c power.c sprintf.c id3.c usb.c \
66 mpeg.c powermgmt.c font.c sysfont.c 66 mpeg.c powermgmt.c font.c sysfont.c ctype.c
67 67
68APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \ 68APPS = main.c tree.c menu.c credits.c main_menu.c icons.c language.c \
69 playlist.c showtext.c wps.c wps-display.c settings.c status.c \ 69 playlist.c showtext.c wps.c wps-display.c settings.c status.c \
@@ -221,6 +221,9 @@ $(OBJDIR)/mpeg.o: $(FIRMWAREDIR)/mpeg.c
221$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c 221$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c
222 $(CC) $(CFLAGS) -c $< -o $@ 222 $(CC) $(CFLAGS) -c $< -o $@
223 223
224$(OBJDIR)/ctype.o: $(COMMON)/ctype.c
225 $(CC) $(CFLAGS) $(APPINCLUDES) -c $< -o $@
226
224$(OBJDIR)/strtok.o: $(COMMON)/strtok.c 227$(OBJDIR)/strtok.o: $(COMMON)/strtok.c
225 $(CC) $(CFLAGS) -c $< -o $@ 228 $(CC) $(CFLAGS) -c $< -o $@
226 229