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