From 1cc6004e9a625fccafff35bf6c9b184ea2a16921 Mon Sep 17 00:00:00 2001 From: Chayoung You Date: Mon, 26 Jun 2017 14:11:16 +0900 Subject: [PATCH] Fix CFLAGS and LIBS for sdl2 --- boards/base/OSX/example/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boards/base/OSX/example/Makefile b/boards/base/OSX/example/Makefile index cce88c13..5cc39d15 100644 --- a/boards/base/OSX/example/Makefile +++ b/boards/base/OSX/example/Makefile @@ -26,7 +26,7 @@ ARCH = SRCFLAGS = -ggdb -O0 -CFLAGS = `sdl2-config --libs --cflags` +CFLAGS = $(sdl2-config --cflags) CXXFLAGS = ASFLAGS = LDFLAGS = @@ -34,7 +34,7 @@ LDFLAGS = SRC = OBJS = DEFS = -LIBS = +LIBS = $(sdl2-config --libs) INCPATH = LIBPATH =