diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-06 11:24:08 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-06 11:24:08 +0000 |
| commit | 9dff75fcb943bd6458e266a635521037169aebf1 (patch) | |
| tree | 70d2c779bc80ed6a065f650dc249332ffa38a078 | |
| parent | 6c25733946c6da5524d2a89bc70ed41f13384cb0 (diff) | |
| download | rockbox-9dff75fcb943bd6458e266a635521037169aebf1.zip rockbox-9dff75fcb943bd6458e266a635521037169aebf1.tar.gz rockbox-9dff75fcb943bd6458e266a635521037169aebf1.tar.bz2 rockbox-9dff75fcb943bd6458e266a635521037169aebf1.tar.xz | |
compile debug.c from the firmware for logging errors
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@472 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/x11/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index 535a59d..33465d4 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -50,7 +50,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) #SRCS = $(wildcard *.c) -FIRMSRCS = chartables.c lcd.c sprintf.c id3.c +FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c APPS = tetris.c screensaver.c tree.c app.c play.c menu.c @@ -95,6 +95,9 @@ chartables.o: $(FIRMWAREDIR)/chartables.c id3.o: $(FIRMWAREDIR)/id3.c $(CC) $(CFLAGS) -c $< -o $@ +debug.o: $(FIRMWAREDIR)/debug.c + $(CC) $(CFLAGS) -c $< -o $@ + sprintf.o: $(COMMON)/sprintf.c $(CC) $(CFLAGS) -c $< -o $@ |