diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-27 06:55:31 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-27 06:55:31 +0000 |
| commit | 1df12c875db0578edb4ee427ec6e933e6fc4eefa (patch) | |
| tree | 104c1969b69573517297c687e867fb6deec24a1a | |
| parent | 275365c3a98368b0f82e749ab83ed6acd4195a18 (diff) | |
| download | rockbox-1df12c875db0578edb4ee427ec6e933e6fc4eefa.zip rockbox-1df12c875db0578edb4ee427ec6e933e6fc4eefa.tar.gz rockbox-1df12c875db0578edb4ee427ec6e933e6fc4eefa.tar.bz2 rockbox-1df12c875db0578edb4ee427ec6e933e6fc4eefa.tar.xz | |
build sound_menu, add mpeg.o to simulat the target mpeg_* functions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@718 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/x11/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index 0c96a77..e92dac9 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 = @@ -68,13 +68,13 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c -APPS = main.c tree.c play.c menu.c credits.c main_menu.c +APPS = main.c tree.c play.c menu.c credits.c main_menu.c sound_menu.c ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) APPS += tetris.c screensaver.c icons.c bmp.c endif -SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ +SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c mpeg.c \ button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS) ifdef MPEG_PLAY @@ -142,6 +142,9 @@ menu.o: $(APPDIR)/menu.c main_menu.o: $(APPDIR)/main_menu.c $(CC) $(CFLAGS) -c $< -o $@ +sound_menu.o: $(APPDIR)/sound_menu.c + $(CC) $(CFLAGS) -c $< -o $@ + icons.o: $(RECDIR)/icons.c $(CC) $(CFLAGS) -c $< -o $@ |