2009-08-26 19:17:05 +08:00
|
|
|
# Makefile for bootrom, see ../common/Makefile.common for common settings
|
2009-04-09 14:43:20 +08:00
|
|
|
|
|
|
|
OBJJTAG = $(OBJDIR)/bootrom.o $(OBJDIR)/ram-reset.o $(OBJDIR)/usb.o
|
|
|
|
OBJFLASH = $(OBJDIR)/flash-reset.o $(OBJDIR)/fromflash.o
|
|
|
|
|
2009-08-26 19:17:05 +08:00
|
|
|
THUMBSRC = usb.c fromflash.c bootrom.c
|
|
|
|
ASMSRC = ram-reset.s flash-reset.s
|
2009-04-09 14:43:20 +08:00
|
|
|
|
2009-08-27 01:34:19 +08:00
|
|
|
# Do not move this inclusion before the definition of {THUMB,ASM,ARM}{OBJ,SRC}
|
|
|
|
include ../common/Makefile.common
|
2009-04-09 14:43:20 +08:00
|
|
|
|
2009-08-26 19:17:05 +08:00
|
|
|
all: bootrom-merged.s19
|
2009-04-09 14:43:20 +08:00
|
|
|
|
2009-08-26 19:17:05 +08:00
|
|
|
bootrom-merged.s19: $(OBJDIR)/bootrom.s19 $(OBJDIR)/bootrom-forjtag.s19
|
|
|
|
perl ../tools/merge-srec.pl $(OBJDIR)/bootrom.s19 $(OBJDIR)/bootrom-forjtag.s19 > bootrom-merged.s19
|
2009-04-09 14:43:20 +08:00
|
|
|
|
2009-08-26 19:17:05 +08:00
|
|
|
$(OBJDIR)/bootrom.elf: $(OBJFLASH)
|
|
|
|
$(LD) -g -Tldscript-flash --oformat elf32-littlearm -Map=$(patsubst %.elf,%.map,$@) -o $@ $^
|
2009-04-09 14:43:20 +08:00
|
|
|
|
2009-08-26 19:17:05 +08:00
|
|
|
$(OBJDIR)/bootrom-forjtag.elf: $(OBJJTAG)
|
|
|
|
$(LD) -g -Tldscript-ram-jtag --oformat elf32-littlearm -Map=$(patsubst %.elf,%.map,$@) -o $@ $^
|
2009-04-09 14:43:20 +08:00
|
|
|
|
|
|
|
clean:
|
2009-08-26 19:17:05 +08:00
|
|
|
$(DELETE) $(OBJDIR)$(PATHSEP)*.o
|
|
|
|
$(DELETE) $(OBJDIR)$(PATHSEP)*.elf
|
|
|
|
$(DELETE) $(OBJDIR)$(PATHSEP)*.s19
|
|
|
|
$(DELETE) $(OBJDIR)$(PATHSEP)*.map
|
2009-08-27 01:34:19 +08:00
|
|
|
$(DELETE) $(OBJDIR)$(PATHSEP)*.d
|
2009-08-26 19:17:05 +08:00
|
|
|
$(DELETE) bootrom-merged.s19
|
|
|
|
|
|
|
|
.PHONY: all clean help
|
|
|
|
help:
|
|
|
|
@echo Multi-OS Makefile, you are running on $(DETECTED_OS)
|
|
|
|
@echo Possible targets:
|
|
|
|
@echo + all - Make bootrom-merged.s19, the main bootrom
|
|
|
|
@echo + clean - Clean $(OBJDIR)
|