From 751d3ee4add467888c6728ebad190398aa24cc92 Mon Sep 17 00:00:00 2001 From: David Garske Date: Mon, 4 May 2020 08:00:11 -0700 Subject: [PATCH] Updated Makefile to allow for wolf path. --- pk/ecc/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pk/ecc/Makefile b/pk/ecc/Makefile index c72703d5..46501e57 100644 --- a/pk/ecc/Makefile +++ b/pk/ecc/Makefile @@ -1,6 +1,7 @@ CC=gcc -CFLAGS=-Wall -LIBS= -lwolfssl +WOLF_PATH=/usr/local +CFLAGS=-I$(WOLF_PATH)/include -Wall +LIBS=-L$(WOLF_PATH)/lib -lwolfssl SRC=$(wildcard *.c) TARGETS=$(patsubst %.c, %, $(SRC))