From 8f725a8b90feeca18198add9cea3ff88e495581d Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Wed, 7 Jan 2015 13:46:03 +0100 Subject: replaced deprecated use of backticks The $(...) notation is meant to be used as a replacement for backticks `...` Signed-off-by: Olivier Gayot --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 689b79f..743e0bc 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC ?= gcc -CFLAGS += -W -Wall -std=c99 -Wextra `sdl-config --cflags` -LDFLAGS += `sdl-config --libs` -lSDL_image -lSDL_ttf +CFLAGS += -W -Wall -std=c99 -Wextra $(shell sdl-config --cflags) +LDFLAGS += $(shell sdl-config --libs) -lSDL_image -lSDL_ttf NAME = a.out SRC = $(wildcard *.c) -- cgit v1.2.3