Skip to content

Commit a544047

Browse files
committed
Fix pioasm build
1 parent c6bd8e9 commit a544047

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ports/raspberrypi/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ SRC_CYW43 := \
5151
lib/cyw43-driver/src/cyw43_lwip.c \
5252

5353
PIOASM = $(BUILD)/pioasm/pioasm/pioasm
54-
.PHONY: PioasmBuild
55-
PioasmBuild: $(PIOASM)
54+
.PHONY: pioasmBuild
55+
pioasmBuild: $(PIOASM)
5656
$(PIOASM):
5757
$(Q)cmake -S pioasm -B $(BUILD)/pioasm
58-
$(Q)$(MAKE) -C $(BUILD)/pioasm PioasmBuild
58+
$(Q)$(MAKE) -C $(BUILD)/pioasm pioasmBuild
5959

6060
$(BUILD)/cyw43_bus_pio_spi.pio.h: sdk/src/rp2_common/pico_cyw43_driver/cyw43_bus_pio_spi.pio $(PIOASM)
6161
$(Q)$(PIOASM) -o c-sdk $< $@

ports/raspberrypi/pioasm/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ include(../sdk/pico_sdk_init.cmake)
55
pico_sdk_init()
66

77
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PICO_SDK_PATH}/tools)
8-
find_package(Pioasm REQUIRED)
8+
find_package(pioasm REQUIRED)

0 commit comments

Comments
 (0)