From: Michael Stapelberg Date: Mon, 18 Sep 2017 06:30:48 +0000 (+0200) Subject: Makefile: make PKG_CONFIG overridable (patch by Helmut Grohne) X-Git-Tag: 2.12~17 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9f5ac89aa490f1fc8d1bf57106641c9ebaa2e9f3;hp=884e4da6730a31fc7a5ef892fb9cb061baaf5f6c;p=i3%2Fi3status Makefile: make PKG_CONFIG overridable (patch by Helmut Grohne) --- diff --git a/Makefile b/Makefile index 3084ae7..86830ef 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,7 @@ ifndef SYSCONFDIR endif endif +PKG_CONFIG ?= pkg-config CFLAGS+=-Wall -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare CFLAGS+=-g CFLAGS+=-std=gnu99 @@ -40,8 +41,8 @@ OS:=$(shell uname) ifeq ($(OS),Linux) CPPFLAGS+=-DLINUX CPPFLAGS+=-D_GNU_SOURCE -CFLAGS += $(shell pkg-config --cflags libnl-genl-3.0) -LIBS += $(shell pkg-config --libs libnl-genl-3.0) +CFLAGS += $(shell $(PKG_CONFIG) --cflags libnl-genl-3.0) +LIBS += $(shell $(PKG_CONFIG) --libs libnl-genl-3.0) LIBS+=-lasound endif