# TLS Examples Makefile CC = gcc WOLFSSL_INSTALL_DIR = /usr/local CFLAGS = -Wall -I$(WOLFSSL_INSTALL_DIR)/include LIBS = -L$(WOLFSSL_INSTALL_DIR)/lib -lm # option variables DYN_LIB = -lwolfssl STATIC_LIB = $(WOLFSSL_INSTALL_DIR)/lib/libwolfssl.a DEBUG_FLAGS = -g -DDEBUG DEBUG_INC_PATHS = -MD OPTIMIZE = -Os # Options #CFLAGS+=$(DEBUG_FLAGS) CFLAGS+=$(OPTIMIZE) #LIBS+=$(STATIC_LIB) LIBS+=$(DYN_LIB) # build targets SRC=$(wildcard *.c) TARGETS=$(patsubst %.c, %, $(SRC)) all: $(TARGETS) debug: CFLAGS+=$(DEBUG_FLAGS) debug: all # add the -pthread flag to any threaded examples %-threaded: CFLAGS+=-pthread %-writedup: CFLAGS+=-pthread memory-tls: CFLAGS+=-pthread # compile tcp examples without the LIBS variable %-tcp: LIBS= # build template %: %.c $(CC) -o $@ $< $(CFLAGS) $(LIBS) clean: rm -f $(TARGETS) rm -f session.bin