We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02e9ebd commit 2d94499Copy full SHA for 2d94499
bootloader/Makefile
@@ -1,10 +1,9 @@
1
MCULIB ?= /persist/mculib
2
DEVICE = gd32f303cc
3
OPENCM3_DIR = /persist/libopencm3
4
-OBJS += main.o ../common.o command_parser.o stream_fifo.o
+OBJS += main.o ../common.o ../command_parser.o ../stream_fifo.o
5
OBJS += $(MCULIB)/fastwiring.o $(MCULIB)/usbserial.o
6
7
-VPATH += ../
8
9
CFLAGS += -Os -g
10
CPPFLAGS += -Os -g --std=c++0x -fno-exceptions -fno-rtti -I$(MCULIB)/include -DMCULIB_DEVICE_STM32F103 -DSTM32F103 -DSTM32F1 -D_XOPEN_SOURCE=600
@@ -19,7 +18,7 @@ LDSCRIPT = ./gd32f303cc.ld
19
18
20
.PHONY: clean all
21
22
-all: binary.elf binary.hex
+all: binary.elf binary.hex binary.bin
23
24
clean:
25
$(Q)$(RM) -rf binary.* *.o
0 commit comments