From 23591252653123cd0d1a12b656015cdb595f93bc Mon Sep 17 00:00:00 2001 From: Ramya Subramanyam Date: Mon, 8 Sep 2025 11:14:10 +0530 Subject: [PATCH] Makefile: Install dependencies libs for onewire tests. Signed-off-by: Ramya Subramanyam --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 0a19306..dd6417e 100644 --- a/Makefile +++ b/Makefile @@ -175,9 +175,14 @@ test_spi_connected1_loopback: TESTS=-DTEST_SPI_CONNECTED1_LOOPBACK test_spi_connected2_masterpingpong: TESTS=-DTEST_SPI_CONNECTED2_MASTERPINGPONG test_spi_connected2_slavepingpong: TESTS=-DTEST_SPI_CONNECTED2_SLAVEPINGPONG +.PHONY: install_onewire_libs +install_onewire_libs: + $(Q) arduino-cli lib update-index + $(Q) arduino-cli lib install "OneWire" ## OneWire tests targets test_onewire_DS18x20: TESTS=-DTEST_ONEWIRE_DS18x20 +test_onewire_DS18x20: install_onewire_libs # Arduino-cli commands