From 3df8ce7717a55acc3469581f688741bd0c199c39 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 8 Sep 2026 00:44:16 +0300 Subject: [PATCH] Changed from using the cxx variable to directly using g++ --- Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index c25c35f..852ef48 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,8 @@ -cxx = g++ - all: - cxx *.cpp -O3 -Wall -Wextra -std=c++17 -o lottery + g++ *.cpp -O3 -Wall -Wextra -std=c++17 -o lottery compile: - cxx *.cpp -O3 -c + g++ *.cpp -O3 -c debug: - cxx *.cpp -g -std=c++17 -o calculator -lstdc++ -lm + g++ *.cpp -g -std=c++17 -o calculator -lstdc++ -lm