From 030aeb591f867263f734ca2e232c45dc98f3ec50 Mon Sep 17 00:00:00 2001 From: norly Date: Tue, 12 Feb 2013 15:44:48 +0000 Subject: [PATCH] Use pkg-config --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b62b9ab..41e8fe5 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ PROJ := elfedit +LIBRARIES := libelf + BUILDDIR := build INCLUDEDIR := include SRCDIR := src @@ -11,9 +13,9 @@ HEADERS += $(shell find $(SRCDIR)/ -iname "*.h") SOURCES := $(shell find $(SRCDIR)/ -iname "*.c") OBJS := $(patsubst %.c, $(BUILDDIR)/%.o, $(SOURCES)) -INCLUDES := $(patsubst %, -I%, $(INCLUDEDIR) $(SRCDIR)) -CFLAGS := -g -Wall -LDFLAGS := -lelf +INCLUDES := $(patsubst %, -I%, $(INCLUDEDIR) $(SRCDIR)) $(shell pkg-config --cflags-only-I $(LIBRARIES)) +CFLAGS := -g -Wall $(shell pkg-config --cflags-only-other $(LIBRARIES)) +LDFLAGS := $(shell pkg-config --libs $(LIBRARIES)) -- 2.30.2