From 40498ffa6f35a2a99676ba049d8bd8ffefcc4925 Mon Sep 17 00:00:00 2001 From: mapyJJJ <35096746+mapyJJJ@users.noreply.github.com> Date: Wed, 11 Jan 2023 16:51:30 +0800 Subject: [PATCH] makefile add CXXFLAGS replace `CXX=g++ -std=c++11 make all` with `make all` --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dc4d051..6afc83e 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,9 @@ +CXXFLAGS='-std=c++11' + LDFLAGS=-lcurses -all: tinytetris + +all: tinytetris clean: - rm -f tinytetris tinytetris-commented + rm -f tinytetris tinytetris-commented