summaryrefslogtreecommitdiff
path: root/fw/fe310/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'fw/fe310/test/Makefile')
-rw-r--r--fw/fe310/test/Makefile20
1 files changed, 20 insertions, 0 deletions
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