aboutsummaryrefslogtreecommitdiffstats
path: root/boards
diff options
context:
space:
mode:
authorChayoung You <yousbe@gmail.com>2017-06-26 14:11:16 +0900
committerChayoung You <yousbe@gmail.com>2017-06-26 14:11:16 +0900
commit1cc6004e9a625fccafff35bf6c9b184ea2a16921 (patch)
treeee2a2beca6ff7d7cda16107fbd34e9b75b43af57 /boards
parent4f07f53f9868b70a1bd370b625308bcb00decb95 (diff)
downloaduGFX-1cc6004e9a625fccafff35bf6c9b184ea2a16921.tar.gz
uGFX-1cc6004e9a625fccafff35bf6c9b184ea2a16921.tar.bz2
uGFX-1cc6004e9a625fccafff35bf6c9b184ea2a16921.zip
Fix CFLAGS and LIBS for sdl2
Diffstat (limited to 'boards')
-rw-r--r--boards/base/OSX/example/Makefile4
1 files 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 =