From d259d5c5110d5867031a9d9ceaaf3725ce242857 Mon Sep 17 00:00:00 2001 From: Piotr Esden-Tempski Date: Tue, 15 Mar 2022 13:33:51 -0700 Subject: [PATCH] build: Only build the locm3 libraries needed. We don't need to build all the locm3 libraries. We just need those that are required by the supported platforms. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b0d5656..471727b 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ ifndef NO_LIBOPENCM3 git submodule init ;\ git submodule update ;\ fi - $(Q)$(MAKE) $(MFLAGS) -C libopencm3 lib + $(Q)$(MAKE) $(MFLAGS) -C libopencm3 lib/stm32/f1 lib/stm32/f4 lib/lm4f endif $(Q)$(MAKE) $(MFLAGS) -C src