Updated Makefile to allow for wolf path.

pull/197/head
David Garske 2020-05-04 08:00:11 -07:00
parent 8b8915d17e
commit 751d3ee4ad
1 changed files with 3 additions and 2 deletions

View File

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