rockbox/gdb/Makefile
Linus Nielsen Feltzing 88c398ab81 More cleanup
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@202 a1c6a512-1295-4272-9138-f99709370657
2002-04-23 20:33:45 +00:00

31 lines
915 B
Makefile

# __________ __ ___.
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
# \/ \/ \/ \/ \/
# $Id$
#
TARGET = stub
OBJS = start.o sh-stub.o
LIBS = -lgcc
.s.o:
sh-elf-as -o $@ $<
.c.o:
sh-elf-gcc -O -I../firmware/drivers -m1 -Wall -Wstrict-prototypes -c -o $@ $<
$(TARGET).out: $(TARGET).elf
sh-elf-objcopy -O binary $(TARGET).elf $(TARGET).out
scramble $(TARGET).out archos.mod
$(TARGET).elf: $(OBJS)
sh-elf-gcc -nostartfiles $(OBJS) -lgcc -Wl,-Map,$(TARGET).map -o $(TARGET).elf -Tlinker.cfg
clean:
rm $(OBJS) $(TARGET).map $(TARGET).elf $(TARGET).out archos.mod
start.o: start.s
stub.o: stub.c
s-stub.o: sh-stub.c