OBJS = palindrome 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 all: ${OBJS} # uncomment each of these # PalindromeT.o : PalindromeT.h # palindromeRoutines.o: palindromeRoutines.h # palindrome: PalindromeT.o palindromeRounteins.o clean: rm -f ${OBJS} *.o