summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-24 10:11:23 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-24 10:11:23 +0000
commit2cc66b66e0b27d41c6f59bac4c9e1eb1865b4653 (patch)
treeb19c108697567c4365aad0eefd1f93d9cd5d2a4d
parent2f06ff764f483f2c3ff28361cb8c5b690dd1e7f8 (diff)
downloadrockbox-2cc66b66e0b27d41c6f59bac4c9e1eb1865b4653.tar.gz
rockbox-2cc66b66e0b27d41c6f59bac4c9e1eb1865b4653.zip
pass on more variables to firmware when we build librockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@689 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 38fbf524e2..0c010e9eeb 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -48,7 +48,7 @@ OBJS := $(SRC:%.c=$(OBJDIR)/%.o)
48all : $(OBJDIR)/archos.mod # archos.asm 48all : $(OBJDIR)/archos.mod # archos.asm
49 49
50$(OBJDIR)/librockbox.a: 50$(OBJDIR)/librockbox.a:
51 make -C $(FIRMWARE) OBJDIR=$(OBJDIR) 51 make -C $(FIRMWARE) TARGET=$(TARGET) DEBUG=$(DEBUG) OBJDIR=$(OBJDIR)
52 52
53$(OBJDIR)/archos.elf : $(OBJS) $(LDS) $(OBJDIR)/librockbox.a 53$(OBJDIR)/archos.elf : $(OBJS) $(LDS) $(OBJDIR)/librockbox.a
54 $(CC) -Os -nostdlib -o $(OBJDIR)/archos.elf $(OBJS) -L$(OBJDIR) -lrockbox -lgcc -lc -L$(FIRMWARE) -T$(LDS) -Wl,-Map,archos.map 54 $(CC) -Os -nostdlib -o $(OBJDIR)/archos.elf $(OBJS) -L$(OBJDIR) -lrockbox -lgcc -lc -L$(FIRMWARE) -T$(LDS) -Wl,-Map,archos.map