2002-04-20 23:18:14 +00:00
|
|
|
CC = sh-elf-gcc
|
|
|
|
LD = sh-elf-ld
|
|
|
|
AR = sh-elf-ar
|
|
|
|
AS = sh-elf-as
|
|
|
|
OC = sh-elf-objcopy
|
|
|
|
|
2002-04-23 13:15:40 +00:00
|
|
|
INCLUDES=-I../.. -I../../drivers
|
2002-04-20 23:18:14 +00:00
|
|
|
|
2002-05-02 21:23:04 +00:00
|
|
|
CFLAGS = -g -Wall -m1 -nostdlib -Wstrict-prototypes -fschedule-insns -fno-builtin $(INCLUDES) -DDEBUG
|
2002-04-20 23:18:14 +00:00
|
|
|
AFLAGS += -small -relax
|
|
|
|
|
2002-05-02 21:23:04 +00:00
|
|
|
OBJS= crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o ../../debug.o \
|
2002-05-02 23:02:36 +00:00
|
|
|
../../common/sprintf.o mp3data.o
|
2002-04-20 23:18:14 +00:00
|
|
|
|
|
|
|
%.o: %.S
|
|
|
|
$(CC) -o $@ $(CFLAGS) $(INCLUDES) $(DEFS) -c $<
|
|
|
|
|
|
|
|
|
|
|
|
all : archos.mod
|
|
|
|
|
|
|
|
main.o: main.c
|
|
|
|
|
|
|
|
archos.elf : $(OBJS) app.lds
|
|
|
|
$(CC) -nostartfiles -o archos.elf $(OBJS) -lgcc -Tapp.lds -Wl,-Map,archos.map
|
|
|
|
|
|
|
|
archos.bin : archos.elf
|
|
|
|
$(OC) -O binary archos.elf archos.bin
|
|
|
|
|
|
|
|
archos.asm: archos.bin
|
|
|
|
sh2d -sh1 archos.bin > archos.asm
|
|
|
|
|
|
|
|
archos.mod : archos.bin
|
|
|
|
scramble archos.bin archos.mod
|
|
|
|
|
|
|
|
archos.mod.gz : archos.mod
|
|
|
|
gzip -f archos.mod
|
|
|
|
|
|
|
|
dist:
|
|
|
|
tar czvf dist.tar.gz Makefile main.c start.s app.lds
|
|
|
|
|
|
|
|
clean:
|
2002-04-23 21:43:14 +00:00
|
|
|
-rm -f $(OBJS) *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~
|
2002-04-20 23:18:14 +00:00
|
|
|
|
|
|
|
install:
|
|
|
|
mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos
|