From ec838c65148a7ae7e65a68db8e3c436c86739b40 Mon Sep 17 00:00:00 2001 From: Nick Thomas Date: Thu, 11 Apr 2019 20:20:20 +0100 Subject: [PATCH] Use pkg-config for libdeltachat too --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9933dd5..0c3b108 100644 --- a/Makefile +++ b/Makefile @@ -11,12 +11,11 @@ $(LIB_TARGET): *.c *.h Makefile -std=c11 \ -shared \ -fpic \ - $(shell $(PKG_CONFIG) --cflags purple libcurl) \ + $(shell $(PKG_CONFIG) --cflags purple libcurl deltachat) \ -o $(LIB_TARGET) \ *.c \ -shared \ - $(shell $(PKG_CONFIG) --libs purple libcurl) \ - -ldeltachat + $(shell $(PKG_CONFIG) --libs purple libcurl deltachat) \ install: install -D $(LIB_TARGET) $(LIB_DEST)