diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-24 10:11:23 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-24 10:11:23 +0000 |
| commit | 2cc66b66e0b27d41c6f59bac4c9e1eb1865b4653 (patch) | |
| tree | b19c108697567c4365aad0eefd1f93d9cd5d2a4d | |
| parent | 2f06ff764f483f2c3ff28361cb8c5b690dd1e7f8 (diff) | |
| download | rockbox-2cc66b66e0b27d41c6f59bac4c9e1eb1865b4653.zip rockbox-2cc66b66e0b27d41c6f59bac4c9e1eb1865b4653.tar.gz rockbox-2cc66b66e0b27d41c6f59bac4c9e1eb1865b4653.tar.bz2 rockbox-2cc66b66e0b27d41c6f59bac4c9e1eb1865b4653.tar.xz | |
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/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile index 38fbf52..0c010e9 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -48,7 +48,7 @@ OBJS := $(SRC:%.c=$(OBJDIR)/%.o) all : $(OBJDIR)/archos.mod # archos.asm $(OBJDIR)/librockbox.a: - make -C $(FIRMWARE) OBJDIR=$(OBJDIR) + make -C $(FIRMWARE) TARGET=$(TARGET) DEBUG=$(DEBUG) OBJDIR=$(OBJDIR) $(OBJDIR)/archos.elf : $(OBJS) $(LDS) $(OBJDIR)/librockbox.a $(CC) -Os -nostdlib -o $(OBJDIR)/archos.elf $(OBJS) -L$(OBJDIR) -lrockbox -lgcc -lc -L$(FIRMWARE) -T$(LDS) -Wl,-Map,archos.map |