From 3f6fd7ddb0c523260ac2d7f07dddde6c7e64186f Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Mon, 12 Jun 2017 14:34:04 +0200 Subject: [PATCH] Makefile: Add exemple for including external lib --- Makefile/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile/Makefile b/Makefile/Makefile index a51fc33..0a68850 100644 --- a/Makefile/Makefile +++ b/Makefile/Makefile @@ -2,11 +2,11 @@ # -MMD is used to generate .d files for header dependencies CPPFLAGS = -MMD # main compilation -CFLAGS ?= -Werror -Wall +CFLAGS ?= -Werror -Wall #$(pkg-config --cflags sdl) #Linker flags LDFLAGS = #Linker path -LDLIBS = +LDLIBS = #$(pkg-config --libs sdl) program = test sources = $(wildcard *.c)