summaryrefslogtreecommitdiff
path: root/uisimulator/x11/Makefile
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-27 06:55:31 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-27 06:55:31 +0000
commit1df12c875db0578edb4ee427ec6e933e6fc4eefa (patch)
tree104c1969b69573517297c687e867fb6deec24a1a /uisimulator/x11/Makefile
parent275365c3a98368b0f82e749ab83ed6acd4195a18 (diff)
downloadrockbox-1df12c875db0578edb4ee427ec6e933e6fc4eefa.tar.gz
rockbox-1df12c875db0578edb4ee427ec6e933e6fc4eefa.zip
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
Diffstat (limited to 'uisimulator/x11/Makefile')
-rw-r--r--uisimulator/x11/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 0c96a77147..e92dac9aed 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -52,7 +52,7 @@ ifeq ($(UNAME),Linux)
52 INCLUDES += -I/usr/X11R6/include 52 INCLUDES += -I/usr/X11R6/include
53 LIBDIRS = -L/usr/X11R6/lib 53 LIBDIRS = -L/usr/X11R6/lib
54 DEFINES += -DLINUX 54 DEFINES += -DLINUX
55 MPEG_PLAY = 1 55 #MPEG_PLAY = 1
56else 56else
57 DEFINES += -DBIG_ENDIAN 57 DEFINES += -DBIG_ENDIAN
58 LIBDIRS = 58 LIBDIRS =
@@ -68,13 +68,13 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES)
68 68
69FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c 69FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c
70 70
71APPS = main.c tree.c play.c menu.c credits.c main_menu.c 71APPS = main.c tree.c play.c menu.c credits.c main_menu.c sound_menu.c
72 72
73ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP) 73ifeq ($(DISPLAY),-DHAVE_LCD_BITMAP)
74 APPS += tetris.c screensaver.c icons.c bmp.c 74 APPS += tetris.c screensaver.c icons.c bmp.c
75endif 75endif
76 76
77SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ 77SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c mpeg.c \
78 button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS) 78 button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS)
79 79
80ifdef MPEG_PLAY 80ifdef MPEG_PLAY
@@ -142,6 +142,9 @@ menu.o: $(APPDIR)/menu.c
142main_menu.o: $(APPDIR)/main_menu.c 142main_menu.o: $(APPDIR)/main_menu.c
143 $(CC) $(CFLAGS) -c $< -o $@ 143 $(CC) $(CFLAGS) -c $< -o $@
144 144
145sound_menu.o: $(APPDIR)/sound_menu.c
146 $(CC) $(CFLAGS) -c $< -o $@
147
145icons.o: $(RECDIR)/icons.c 148icons.o: $(RECDIR)/icons.c
146 $(CC) $(CFLAGS) -c $< -o $@ 149 $(CC) $(CFLAGS) -c $< -o $@
147 150