CC = sh-elf-gcc LD = sh-elf-ld AR = sh-elf-ar AS = sh-elf-as OC = sh-elf-objcopy INCLUDES=-I../../ CFLAGS = -g -Wall -m1 -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns -fno-builtin $(INCLUDES) AFLAGS += -small -relax OBJS= crt0.o main.o ../../i2c.o ../../mas.o ../../debug.o %.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: -rm -f *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~ install: mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos