diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-05-16 14:48:17 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-05-16 14:48:17 +0000 |
| commit | 6cb1f7b08b9b133dea21484262c4c33475c213a1 (patch) | |
| tree | cf93441926222525316eb6fcd70e28a2fc01fc14 | |
| parent | 28af55d61a6d392e73a37d0f3b50844459fae5ce (diff) | |
| download | rockbox-6cb1f7b08b9b133dea21484262c4c33475c213a1.zip rockbox-6cb1f7b08b9b133dea21484262c4c33475c213a1.tar.gz rockbox-6cb1f7b08b9b133dea21484262c4c33475c213a1.tar.bz2 rockbox-6cb1f7b08b9b133dea21484262c4c33475c213a1.tar.xz | |
Now uses librockbox.a
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@598 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/Makefile b/apps/Makefile index c8b87ae..df7005e 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -26,12 +26,12 @@ CFLAGS = -Os -W -Wall -m1 -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fs AFLAGS += -small -relax SRC := $(wildcard drivers/*.c common/*.c *.c) -OBJS := $(SRC:%.c=%.o) crt0.o +OBJS := $(SRC:%.c=%.o) $(FIRMWARE)/crt0.o all : archos.mod # archos.asm archos.elf : $(OBJS) $(FIRMWARE)/app.lds - $(CC) -nostdlib -o archos.elf $(OBJS) -lgcc -lc -T$(FIRMWARE)/app.lds -Wl,-Map,archos.map + $(CC) -nostdlib -o archos.elf $(OBJS) -lrockbox -lgcc -lc -L$(FIRMWARE) -T$(FIRMWARE)/app.lds -Wl,-Map,archos.map archos.bin : archos.elf $(OC) -O binary archos.elf archos.bin |