CXXFLAGS = -g -O3 -Wpedantic -Wall -Wextra -Wmisleading-indentation -Wunused -Wuninitialized -Wshadow -Wconversion -std=c++17 OBJS = library all: ${OBJS} # these are commented out, just remove the # to enable a dependancy #ReaderT.o: ReaderT.h #BookT.o: BookT.h #ReaderListT.o: ReaderListT.h #BookListT.o: BookListT.h #library: ReaderT.o BookT.o ReaderListT.o BookListT.o clean: rm -f ${OBJS}