Changed from using the cxx variable to directly using g++

This commit is contained in:
2026-09-08 00:44:16 +03:00
parent 63a6b13005
commit 3df8ce7717
+3 -5
View File
@@ -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