CCFLAGS=-W -Wall -Werror -pedantic -std=c++23 all: testCPP11 testCPP11: testCPP11.o g++ testCPP11.o -o testCPP11 testCPP11.o: testCPP11.cpp g++ -c $(CCFLAGS) testCPP11.cpp clean: rm -f testCPP11.o testCPP11 a.out clear: rm -f testCPP11.o testCPP11 a.out