Added menu.c

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@466 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Hak 2002-05-06 08:43:00 +00:00
parent fe6c52cc76
commit 40fe97b477

View file

@ -52,7 +52,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES)
FIRMSRCS = chartables.c lcd.c sprintf.c id3.c
APPS = tetris.c screensaver.c tree.c app.c play.c
APPS = tetris.c screensaver.c tree.c app.c play.c menu.c
SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \
button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS)
@ -68,6 +68,9 @@ clean:
distclean: clean
$(RM) config.cache
menu.o: $(APPDIR)/menu.c
$(CC) $(CFLAGS) -c $< -o $@
tetris.o: $(APPDIR)/tetris.c
$(CC) $(CFLAGS) -c $< -o $@