summaryrefslogtreecommitdiff
path: root/uisimulator/x11
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-05 10:29:17 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-05 10:29:17 +0000
commit86a05c56c2431b74eabbcd96eba0ed6d145ac590 (patch)
treee0fc81d787ef9d9b9b63a837029e5a0015659445 /uisimulator/x11
parentb3df1916fbfe808ead9a8e444865f7a3132abd67 (diff)
downloadrockbox-86a05c56c2431b74eabbcd96eba0ed6d145ac590.tar.gz
rockbox-86a05c56c2431b74eabbcd96eba0ed6d145ac590.zip
build play.c and id3.c too now
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@427 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11')
-rw-r--r--uisimulator/x11/Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile
index 6abafc1aef..c9cef64f70 100644
--- a/uisimulator/x11/Makefile
+++ b/uisimulator/x11/Makefile
@@ -50,12 +50,12 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES)
50 50
51#SRCS = $(wildcard *.c) 51#SRCS = $(wildcard *.c)
52 52
53FIRMSRCS = chartables.c lcd.c sprintf.c 53FIRMSRCS = chartables.c lcd.c sprintf.c id3.c
54 54
55APPS = tetris.c screensaver.c 55APPS = tetris.c screensaver.c tree.c app.c play.c
56 56
57SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ 57SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \
58 button-x11.c app.c tree.c io.c sleep.c $(APPS) $(FIRMSRCS) 58 button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS)
59 59
60OBJS := $(SRCS:c=o) 60OBJS := $(SRCS:c=o)
61 61
@@ -77,6 +77,9 @@ screensaver.o: $(APPDIR)/screensaver.c
77app.o: $(APPDIR)/app.c 77app.o: $(APPDIR)/app.c
78 $(CC) $(CFLAGS) -c $< -o $@ 78 $(CC) $(CFLAGS) -c $< -o $@
79 79
80play.o: $(APPDIR)/play.c
81 $(CC) $(CFLAGS) -c $< -o $@
82
80tree.o: $(APPDIR)/tree.c 83tree.o: $(APPDIR)/tree.c
81 $(CC) $(CFLAGS) -c $< -o $@ 84 $(CC) $(CFLAGS) -c $< -o $@
82 85
@@ -86,6 +89,9 @@ lcd.o: $(DRIVERS)/lcd.c
86chartables.o: $(FIRMWAREDIR)/chartables.c 89chartables.o: $(FIRMWAREDIR)/chartables.c
87 $(CC) $(CFLAGS) -c $< -o $@ 90 $(CC) $(CFLAGS) -c $< -o $@
88 91
92id3.o: $(FIRMWAREDIR)/id3.c
93 $(CC) $(CFLAGS) -c $< -o $@
94
89sprintf.o: $(COMMON)/sprintf.c 95sprintf.o: $(COMMON)/sprintf.c
90 $(CC) $(CFLAGS) -c $< -o $@ 96 $(CC) $(CFLAGS) -c $< -o $@
91 97