cryptochip-gen-random: remove --static flag from LDLIBS

The newest version of cryptoauthlib is built as a shared library instead of a
static one.

https://jira.digi.com/browse/DEL-6835

Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
This commit is contained in:
Gabriel Valcazar 2019-11-05 15:35:30 +01:00
parent 7413e47d8c
commit ff20d8c0a9
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ PROGRAM := cryptochip-gen-random
CFLAGS += -Wall
CFLAGS += $(shell pkg-config --cflags cryptoauthlib)
LDLIBS += $(shell pkg-config --libs --static cryptoauthlib)
LDLIBS += $(shell pkg-config --libs cryptoauthlib)
all: $(PROGRAM)