From 37abc561a8dec98c89b241edd3bac68217fe2076 Mon Sep 17 00:00:00 2001 From: Steve Karg Date: Fri, 6 Nov 2020 11:31:48 -0600 Subject: [PATCH] Added stm32f4xx port to root Makefile (#138) Co-authored-by: Steve Karg --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 0f6a89fa..ebb38ad4 100644 --- a/Makefile +++ b/Makefile @@ -126,6 +126,10 @@ at91sam7s: ports/at91sam7s/Makefile stm32f10x: ports/stm32f10x/Makefile $(MAKE) -C ports/stm32f10x clean all +.PHONY: stm32f4xx +stm32f4xx: ports/stm32f4xx/Makefile + $(MAKE) -C ports/stm32f4xx clean all + .PHONY: mstpsnap mstpsnap: ports/linux/mstpsnap.mak $(MAKE) -s -C ports/linux -f mstpsnap.mak clean all