46 lines
898 B
Makefile
46 lines
898 B
Makefile
MSCDIR=../..
|
|
include $(MSCDIR)/software/common.mak
|
|
|
|
OBJECTS=isr.o sdram.o main.o boot-helper-$(CPU).o boot.o dataflow.o
|
|
|
|
all: bios.bin
|
|
|
|
# pull in dependency info for *existing* .o files
|
|
-include $(OBJECTS:.o=.d)
|
|
|
|
%.bin: %.elf
|
|
$(OBJCOPY) -O binary $< $@
|
|
chmod -x $@
|
|
$(MSCDIR)/mkmscimg.py $@
|
|
|
|
bios.elf: linker.ld $(OBJECTS) libs
|
|
|
|
%.elf:
|
|
$(LD) $(LDFLAGS) -T $< -N -o $@ \
|
|
$(MSCDIR)/software/libbase/crt0-$(CPU).o \
|
|
$(OBJECTS) \
|
|
-L$(MSCDIR)/software/libnet \
|
|
-L$(MSCDIR)/software/libbase \
|
|
-L$(MSCDIR)/software/libcompiler-rt \
|
|
-lnet -lbase-nofloat -lcompiler-rt
|
|
chmod -x $@
|
|
|
|
main.o: main.c
|
|
$(compile-dep)
|
|
|
|
%.o: %.c
|
|
$(compile-dep)
|
|
|
|
%.o: %.S
|
|
$(assemble)
|
|
|
|
libs:
|
|
$(MAKE) -C $(MSCDIR)/software/libcompiler-rt
|
|
$(MAKE) -C $(MSCDIR)/software/libbase
|
|
$(MAKE) -C $(MSCDIR)/software/libnet
|
|
|
|
clean:
|
|
$(RM) $(OBJECTS) $(OBJECTS:.o=.d) bios.elf bios.bin .*~ *~
|
|
|
|
.PHONY: all main.o clean libs
|