summaryrefslogtreecommitdiff
path: root/tools/genfont/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/genfont/Makefile')
-rw-r--r--tools/genfont/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/genfont/Makefile b/tools/genfont/Makefile
index c4aab2f..1a68ad0 100644
--- a/tools/genfont/Makefile
+++ b/tools/genfont/Makefile
@@ -9,10 +9,10 @@ PRGNAME = genfont
OBJS = genfont.o
INCLUDES += -I../../
-INCLUDES += `freetype-config --cflags`
+INCLUDES += $(shell pkg-config freetype2 --cflags)
LIBDIRS += -L../../glcdgraphics/
-LIBS += `freetype-config --libs`
+LIBS += $(shell pkg-config freetype2 --libs)
all: $(PRGNAME)
.PHONY: all