From dcbf81973fc077ef059a2157530151c93f6245e1 Mon Sep 17 00:00:00 2001 From: Allanis Date: Sun, 9 Mar 2014 21:32:49 +0000 Subject: [PATCH] [Change] r/pkg-config/libpng-config --- bin/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/Makefile b/bin/Makefile index 3c97150..5707275 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -28,7 +28,7 @@ CLUA := -I../lib/lua CSDL := $(shell sdl-config --cflags) CXML := $(shell xml2-config --cflags) CTTF := $(shell freetype-config --cflags) -CPNG := $(shell pkg-config libpng --cflags) +CPNG := $(shell libpng-config libpng --cflags) CGL := CFLAGS := $(CLUA) $(CSDL) $(CXML) $(CTTF) $(CPNG) $(CGL) $(VERSION) -D$(OS) @@ -61,7 +61,7 @@ LDLUA := ../lib/lua/liblua.a LDSDL := $(shell sdl-config --libs) -lSDL_image -lSDL_mixer LDXML := $(shell xml2-config --libs) LDTTF := $(shell freetype-config --libs) -CPNG := $(shell pkg-config libpng --libs) +CPNG := $(shell libpng-config libpng --libs) LDGL := -lGL LDFLAGS := -lm $(LDLUA) $(LDSDL) $(LDXML) $(LDTTF) $(CPNG) $(LDGL) $(LDPNG)