aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 26c61b1..17c6d49 100644
--- a/Makefile
+++ b/Makefile
@@ -10,12 +10,14 @@ OBJS=$(OBJS_sub:.c=.o)
OBJ_DIRS_sub=$(shell find $(SRC_DIR) -type d)
OBJ_DIRS=$(subst $(SRC_DIR),$(OBJ_DIR),$(OBJ_DIRS_sub))
+PKGCONF=pkg-config
+
CFLAGS=
-CFLAGS+=$(shell pkgconf --cflags $(PKGS))
+CFLAGS+=$(shell $(PKGCONF) --cflags $(PKGS))
CFLAGS+=-I$(INC_DIR)
LDFLAGS=
-LDFLAGS+=$(shell pkgconf --libs $(PKGS))
+LDFLAGS+=$(shell $(PKGCONF) --libs $(PKGS))
default: clean build