diff options
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |