fix: forgot to include half of the libraries.
This commit is contained in:
6
Makefile
6
Makefile
@@ -20,9 +20,9 @@ LDLIBS := $(LDLIBS) -lm
|
||||
ifeq (,$(shell command -v pkg-config))
|
||||
$(error Failed to locate pkg-config, please make sure it is installed or acessible through PATH.)
|
||||
else
|
||||
CPPFLAGS += $(shell pkg-config --cflags-only-I x11 xinerama)
|
||||
LDFLAGS += $(shell pkg-config --libs-only-L x11 xinerama)
|
||||
LDLIBS += $(shell pkg-config --libs-only-l x11 xinerama)
|
||||
CPPFLAGS += $(shell pkg-config --cflags-only-I fontconfig freetype2 x11 xft xinerama)
|
||||
LDFLAGS += $(shell pkg-config --libs-only-L fontconfig freetype2 x11 xft xinerama)
|
||||
LDLIBS += $(shell pkg-config --libs-only-l fontconfig freetype2 x11 xft xinerama)
|
||||
endif
|
||||
|
||||
SRC := $(wildcard src/*.c)
|
||||
|
||||
Reference in New Issue
Block a user