forked from len0rd/rockbox
Now creates librockbox.a instead of archos.mod
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@577 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e6564e2005
commit
20dab8c59c
1 changed files with 7 additions and 21 deletions
|
|
@ -20,36 +20,22 @@ TARGET = -DARCHOS_PLAYER=1
|
||||||
#TARGET = -DARCHOS_PLAYER_OLD=1
|
#TARGET = -DARCHOS_PLAYER_OLD=1
|
||||||
#TARGET = -DARCHOS_RECORDER=1
|
#TARGET = -DARCHOS_RECORDER=1
|
||||||
|
|
||||||
CFLAGS = -Os -Wall -m1 -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns $(INCLUDES) $(TARGET) -DDEBUG
|
CFLAGS = -Os -W -Wall -m1 -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns $(INCLUDES) $(TARGET) -DDEBUG
|
||||||
AFLAGS += -small -relax
|
AFLAGS += -small -relax
|
||||||
|
|
||||||
SRC := $(wildcard drivers/*.c common/*.c *.c)
|
SRC := $(wildcard drivers/*.c common/*.c malloc/*.c *.c)
|
||||||
OBJS := $(SRC:%.c=%.o) crt0.o
|
OBJS := $(SRC:%.c=%.o) crt0.o
|
||||||
|
DEPS:=.deps
|
||||||
|
DEPDIRS:=$(DEPS) $(DEPS)/drivers $(DEPS)/common $(DEPS)/malloc
|
||||||
|
|
||||||
all : archos.mod # archos.asm
|
|
||||||
|
|
||||||
archos.elf : $(OBJS) app.lds
|
librockbox.a: $(OBJS)
|
||||||
$(CC) -nostdlib -o archos.elf $(OBJS) -lgcc -lc -Tapp.lds -Wl,-Map,archos.map
|
$(AR) ruv $@ $+
|
||||||
|
|
||||||
archos.bin : archos.elf
|
|
||||||
$(OC) -O binary archos.elf archos.bin
|
|
||||||
|
|
||||||
archos.asm: archos.bin
|
|
||||||
../tools/sh2d -sh1 archos.bin > archos.asm
|
|
||||||
|
|
||||||
archos.mod : archos.bin
|
|
||||||
../tools/scramble archos.bin archos.mod
|
|
||||||
|
|
||||||
dist:
|
|
||||||
tar czvf dist.tar.gz Makefile main.c start.s app.lds
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-rm -f *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~
|
-rm -f $(OBJS) *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~
|
||||||
-$(RM) -r $(DEPS)
|
-$(RM) -r $(DEPS)
|
||||||
|
|
||||||
DEPS:=.deps
|
|
||||||
DEPDIRS:=$(DEPS) $(DEPS)/drivers $(DEPS)/common
|
|
||||||
|
|
||||||
$(DEPS)/%.d: %.c
|
$(DEPS)/%.d: %.c
|
||||||
@$(SHELL) -c 'for d in $(DEPDIRS); do { if [ ! -d $$d ]; then mkdir $$d; fi; }; done'
|
@$(SHELL) -c 'for d in $(DEPDIRS); do { if [ ! -d $$d ]; then mkdir $$d; fi; }; done'
|
||||||
@echo "Updating dependencies for $<"
|
@echo "Updating dependencies for $<"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue