diff options
author | Robert Hak <adiamas@rockbox.org> | 2002-05-18 11:43:03 +0000 |
---|---|---|
committer | Robert Hak <adiamas@rockbox.org> | 2002-05-18 11:43:03 +0000 |
commit | 88a1c6ab55ba8dceb4d5840ec9458a75e30c8d14 (patch) | |
tree | ab816059917729caf30d1efbba1218df2d832608 /uisimulator | |
parent | 7ec9aa3bd8aaaa185c95cb326b7559abf01e0de8 (diff) | |
download | rockbox-88a1c6ab55ba8dceb4d5840ec9458a75e30c8d14.tar.gz rockbox-88a1c6ab55ba8dceb4d5840ec9458a75e30c8d14.zip |
added credits.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@632 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/x11/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index 7689da57bf..996ef6105d 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -52,7 +52,7 @@ ifeq ($(UNAME),Linux) INCLUDES += -I/usr/X11R6/include LIBDIRS = -L/usr/X11R6/lib DEFINES += -DLINUX -# MPEG_PLAY = 1 + # MPEG_PLAY = 1 else DEFINES += -DBIG_ENDIAN LIBDIRS = @@ -64,7 +64,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 icons.c bmp.c +APPS = tetris.c screensaver.c tree.c app.c play.c menu.c icons.c bmp.c credits.c SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ @@ -126,6 +126,9 @@ mpegplay.o: $(PREVAPPDIR)/common/mpegplay.c endif +credits.o: $(APPDIR)/credits.c + $(CC) $(CFLAGS) -c $< -o $@ + menu.o: $(APPDIR)/menu.c $(CC) $(CFLAGS) -c $< -o $@ |