Skip to content

Commit 3717a67

Browse files
author
Mirko Jelinek
committed
Initial adaptions to bring output buffers to life
1 parent 671158a commit 3717a67

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export V
2424

2525
BUILD_DIR ?= ./build
2626

27-
all: DAP42.bin DAP42DC.bin KITCHEN42.bin \
27+
all: DAP42.bin SBDAP.bin DAP42DC.bin KITCHEN42.bin \
2828
DAP103.bin DAP103-DFU.bin \
2929
DAP103-BLUEPILL.bin DAP103-BLUEPILL-DFU.bin \
3030
DAP103-NUCLEO-STBOOT.bin \
@@ -45,6 +45,12 @@ DAP42.bin: | $(BUILD_DIR)
4545
$(Q)$(MAKE) TARGET=STM32F042 -C src/
4646
$(Q)cp src/DAP42.bin $(BUILD_DIR)/$(@)
4747

48+
SBDAP.bin: | $(BUILD_DIR)
49+
@printf " BUILD $(@)\n"
50+
$(Q)$(MAKE) TARGET=SBDAP -C src/ clean
51+
$(Q)$(MAKE) TARGET=SBDAP -C src/
52+
$(Q)cp src/DAP42.bin $(BUILD_DIR)/$(@)
53+
4854
DAP42DC.bin: | $(BUILD_DIR)
4955
@printf " BUILD $(@)\n"
5056
$(Q)$(MAKE) TARGET=DAP42DC -C src/ clean

0 commit comments

Comments
 (0)