summaryrefslogtreecommitdiff
path: root/uisimulator/x11/Makefile
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-08 11:05:28 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-08 11:05:28 +0000
commit143471447c3f7307c5fc24a861bdb73df34d4a7c (patch)
tree473a0eb76eb75331ccb4a356e4d53d185ba59851 /uisimulator/x11/Makefile
parent81948a599418623c6e665ea9f4832e2ab67b638d (diff)
downloadrockbox-143471447c3f7307c5fc24a861bdb73df34d4a7c.tar.gz
rockbox-143471447c3f7307c5fc24a861bdb73df34d4a7c.zip
added icons.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@511 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 33465d4710..9753394456 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -52,7 +52,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES)
52 52
53FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c 53FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c
54 54
55APPS = tetris.c screensaver.c tree.c app.c play.c menu.c 55APPS = tetris.c screensaver.c tree.c app.c play.c menu.c icons.c
56 56
57SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ 57SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \
58 button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS) 58 button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS)
@@ -71,6 +71,9 @@ distclean: clean
71menu.o: $(APPDIR)/menu.c 71menu.o: $(APPDIR)/menu.c
72 $(CC) $(CFLAGS) -c $< -o $@ 72 $(CC) $(CFLAGS) -c $< -o $@
73 73
74icons.o: $(APPDIR)/icons.c
75 $(CC) $(CFLAGS) -c $< -o $@
76
74tetris.o: $(APPDIR)/tetris.c 77tetris.o: $(APPDIR)/tetris.c
75 $(CC) $(CFLAGS) -c $< -o $@ 78 $(CC) $(CFLAGS) -c $< -o $@
76 79