From 4f43f2b93d70f74edfaccaef881ee7aa6ecf48f6 Mon Sep 17 00:00:00 2001 From: Anthony Hu Date: Fri, 4 Oct 2024 12:31:21 -0400 Subject: [PATCH] Makefile does not build wolfssl-lwip-client. --- maxq10xx/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/maxq10xx/Makefile b/maxq10xx/Makefile index 159c2cd8..016cc42c 100644 --- a/maxq10xx/Makefile +++ b/maxq10xx/Makefile @@ -19,6 +19,10 @@ LIBS+=$(DYN_LIB) # build targets SRC=$(wildcard *.c) + +# Exclude wolfssl-lwip-client.c since it is not a stand-alone application, but +# is needed for LWIP example +SRC := $(filter-out wolfssl-lwip-client.c, $(SRC)) TARGETS=$(patsubst %.c, %, $(SRC)) .PHONY: clean all