compile debug.c from the firmware for logging errors

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@472 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-05-06 11:24:08 +00:00
parent 6c25733946
commit 9dff75fcb9

View file

@ -50,7 +50,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES)
#SRCS = $(wildcard *.c) #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 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 id3.o: $(FIRMWAREDIR)/id3.c
$(CC) $(CFLAGS) -c $< -o $@ $(CC) $(CFLAGS) -c $< -o $@
debug.o: $(FIRMWAREDIR)/debug.c
$(CC) $(CFLAGS) -c $< -o $@
sprintf.o: $(COMMON)/sprintf.c sprintf.o: $(COMMON)/sprintf.c
$(CC) $(CFLAGS) -c $< -o $@ $(CC) $(CFLAGS) -c $< -o $@