From c7d1773e73f8c8195c30fdf0e5143f61a123338e Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Wed, 5 Aug 2020 06:43:12 +0200 Subject: added test prg --- fw/fe310/test/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 fw/fe310/test/Makefile (limited to 'fw/fe310/test/Makefile') diff --git a/fw/fe310/test/Makefile b/fw/fe310/test/Makefile new file mode 100644 index 0000000..f6b619c --- /dev/null +++ b/fw/fe310/test/Makefile @@ -0,0 +1,20 @@ +include ../common.mk + +CFLAGS += -I.. -I../bsp/include -I../bsp/drivers +LDFLAGS = $(CFLAGS) -L.. -Wl,--gc-sections -nostartfiles -nostdlib -Wl,--start-group -lc -lm -lgcc -leos -Wl,--end-group -T../bsp/default.lds + +TARGET = modem + +all: $(TARGET) + +%.o: %.c + $(CC) $(CFLAGS) -c $< + +$(TARGET): $(TARGET).o + $(CC) $< $(LDFLAGS) -o $@ + +clean: + rm -f *.o *.a $(TARGET) + +upload: $(TARGET) + ../bsp/upload --elf ./$(TARGET) --openocd $(RISCV_OPENOCD_HOME)/bin/openocd --gdb $(RISCV_HOME)/bin/riscv64-unknown-elf-gdb --openocd-config ../bsp/openocd.cfg -- cgit v1.2.3