OBJS = WordCountTest WordArrayTest solution randTest CXXFLAGS = -Wall -Wextra -Wpedantic -Wshadow -Wconversion -std=c++23 -g -O2 all: ${OBJS} die.o: die.h randTest : die.o WordCountTest: WordCountT.o WordCountT.o: WordCountT.h WordArrayT.o: WordArrayT.h WordCountT.h WordArraySupport: WordArraySupport.h WordArrayT.h WordCountT.h WordArrayTest: WordArrayT.o WordCountT.o WordArraySupport.o solution: WordArrayT.o WordCountT.o WordArraySupport.o clean: rm -rf ${OBJS} *.o