Makefile does not build wolfssl-lwip-client.

pull/464/head
Anthony Hu 2024-10-04 12:31:21 -04:00
parent aa1818ce35
commit 4f43f2b93d
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