diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-05 10:29:17 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-05 10:29:17 +0000 |
| commit | 86a05c56c2431b74eabbcd96eba0ed6d145ac590 (patch) | |
| tree | e0fc81d787ef9d9b9b63a837029e5a0015659445 | |
| parent | b3df1916fbfe808ead9a8e444865f7a3132abd67 (diff) | |
| download | rockbox-86a05c56c2431b74eabbcd96eba0ed6d145ac590.zip rockbox-86a05c56c2431b74eabbcd96eba0ed6d145ac590.tar.gz rockbox-86a05c56c2431b74eabbcd96eba0ed6d145ac590.tar.bz2 rockbox-86a05c56c2431b74eabbcd96eba0ed6d145ac590.tar.xz | |
build play.c and id3.c too now
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@427 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/x11/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index 6abafc1..c9cef64 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -50,12 +50,12 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) #SRCS = $(wildcard *.c) -FIRMSRCS = chartables.c lcd.c sprintf.c +FIRMSRCS = chartables.c lcd.c sprintf.c id3.c -APPS = tetris.c screensaver.c +APPS = tetris.c screensaver.c tree.c app.c play.c SRCS = screenhack.c uibasic.c resources.c visual.c lcd-x11.c \ - button-x11.c app.c tree.c io.c sleep.c $(APPS) $(FIRMSRCS) + button-x11.c io.c sleep.c $(APPS) $(FIRMSRCS) OBJS := $(SRCS:c=o) @@ -77,6 +77,9 @@ screensaver.o: $(APPDIR)/screensaver.c app.o: $(APPDIR)/app.c $(CC) $(CFLAGS) -c $< -o $@ +play.o: $(APPDIR)/play.c + $(CC) $(CFLAGS) -c $< -o $@ + tree.o: $(APPDIR)/tree.c $(CC) $(CFLAGS) -c $< -o $@ @@ -86,6 +89,9 @@ lcd.o: $(DRIVERS)/lcd.c chartables.o: $(FIRMWAREDIR)/chartables.c $(CC) $(CFLAGS) -c $< -o $@ +id3.o: $(FIRMWAREDIR)/id3.c + $(CC) $(CFLAGS) -c $< -o $@ + sprintf.o: $(COMMON)/sprintf.c $(CC) $(CFLAGS) -c $< -o $@ |