aboutsummaryrefslogblamecommitdiff
path: root/projects/board-test/Makefile
blob: 9b1812fcafdbdf775b65ec9c95c03cc83c0224e9 (plain) (tree)
1
                                                                         
















                                                                 
TEST = led-test short-test uart-test fmc-test fmc-perf fmc-probe rtc-test

all: $(TEST:=.elf)

%.elf: %.o $(BOARD_OBJS) $(LIBS)
	$(CC) $(CFLAGS) $^ -o $@ -T$(LDSCRIPT) -g -Wl,-Map=$*.map
	$(OBJCOPY) -O ihex $*.elf $*.hex
	$(OBJCOPY) -O binary $*.elf $*.bin
	$(OBJDUMP) -St $*.elf >$*.lst
	$(SIZE) $*.elf

clean:
	rm -f *.o
	rm -f *.elf
	rm -f *.hex
	rm -f *.bin
	rm -f *.map
	rm -f *.lst