summaryrefslogtreecommitdiff
path: root/uisimulator/x11/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/x11/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/x11/Makefile')
-rw-r--r--uisimulator/x11/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 81ddaf58a7..930de50d7b 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -78,7 +78,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall
78APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall 78APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall
79 79
80FIRMSRCS = lcd-recorder.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\ 80FIRMSRCS = lcd-recorder.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\
81 powermgmt.c font.c panic.c sysfont.c 81 powermgmt.c font.c panic.c sysfont.c ctype.c
82 82
83APPS = main.c tree.c menu.c credits.c main_menu.c language.c\ 83APPS = main.c tree.c menu.c credits.c main_menu.c language.c\
84 playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c\ 84 playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c\
@@ -263,6 +263,9 @@ $(OBJDIR)/mpeg.o: $(FIRMWAREDIR)/mpeg.c
263$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c 263$(OBJDIR)/sprintf.o: $(COMMON)/sprintf.c
264 $(CC) $(CFLAGS) -c $< -o $@ 264 $(CC) $(CFLAGS) -c $< -o $@
265 265
266$(OBJDIR)/ctype.o: $(COMMON)/ctype.c
267 $(CC) $(CFLAGS) $(APPINCLUDES) -c $< -o $@
268
266$(OBJDIR)/stubs.o: ../common/stubs.c 269$(OBJDIR)/stubs.o: ../common/stubs.c
267 $(CC) $(CFLAGS) -c $< -o $@ 270 $(CC) $(CFLAGS) -c $< -o $@
268 271