Merge pull request #464 from anhu/no_wolfssl-lwip-client

Makefile does not build wolfssl-lwip-client.
pull/468/head
Daniel Pouzzner 2024-10-08 09:51:37 -05:00 committed by GitHub
commit 14dfeeb4df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -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