diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-05-08 11:05:28 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-08 11:05:28 +0000 |
commit | 143471447c3f7307c5fc24a861bdb73df34d4a7c (patch) | |
tree | 473a0eb76eb75331ccb4a356e4d53d185ba59851 /uisimulator/x11 | |
parent | 81948a599418623c6e665ea9f4832e2ab67b638d (diff) |
added icons.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@511 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11')
-rw-r--r-- | uisimulator/x11/Makefile | 5 |
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) FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c -APPS = tetris.c screensaver.c tree.c app.c play.c menu.c +APPS = tetris.c screensaver.c tree.c app.c play.c menu.c icons.c SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS) @@ -71,6 +71,9 @@ distclean: clean menu.o: $(APPDIR)/menu.c $(CC) $(CFLAGS) -c $< -o $@ +icons.o: $(APPDIR)/icons.c + $(CC) $(CFLAGS) -c $< -o $@ + tetris.o: $(APPDIR)/tetris.c $(CC) $(CFLAGS) -c $< -o $@ |