diff --git a/Makefile/Makefile b/Makefile/Makefile index c6750eb..28a8397 100644 --- a/Makefile/Makefile +++ b/Makefile/Makefile @@ -2,13 +2,13 @@ # -MMD is used to generate .d files for user header dependencies (use -MD for system and user header instead) CPPFLAGS = -MMD # main compilation -CFLAGS ?= -Werror -Wall #$(pkg-config --cflags sdl) +CFLAGS ?= -Werror -Wall #$(shell pkg-config --cflags sdl) # C++ flags CXXFLAGS = #Linker flags LDFLAGS = #Linker path -LDLIBS = #$(pkg-config --libs sdl) +LDLIBS = #$(shell pkg-config --libs sdl) ifneq ($(CROSS_COMPILE),) CC :=$(CROSS_COMPILE)$(CC)