OBJS = myPi pi2 pi3 threadTest pi4 pi5 sort #CXXFLAGS = -g -O2 -Wall -Wextra -Wpedantic -Werror --std=c++20 -Wnon-virtual-dtor -Wold-style-cast -Wunused-parameter -Wuninitialized -Winit-self -Wshadow -Wparentheses -Wdangling-else CXXFLAGS = --std=c++20 -fpermissive LDLIBS = -pthread all: ${OBJS} clean: rm -f ${OBJS} *.o