From 0dabf1e584513b41269926a1ac66bcc1b92309ed Mon Sep 17 00:00:00 2001 From: Tan Shuai <7anshuai@gmail.com> Date: Tue, 28 May 2019 00:42:35 +0800 Subject: [PATCH] Use LDLIBS instead of LDFLAGS in makefile --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dc4d051..e2c1f6c 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ -LDFLAGS=-lcurses +CXXFLAGS=-std=c++11 +LDLIBS=-lcurses -all: tinytetris +all: tinytetris tinytetris-commented clean: rm -f tinytetris tinytetris-commented