Picture of Terminal showing error. This picture shows the terminal that describes what error I am getting whenever I run the make command. Down below is also the actual makefile that I am using and I am very confused about what the problem even is? I am not sure if it has to do with the driver.cpp or with the makefile but pls help!!
hw4: driver.o customer.o event.o arrayQueue.o
g++ -o hw4.exe driver.o customer.o event.o arrayQueue.o
driver.o: driver.cpp event.h customer.h arrayQueue.h
g++ -c driver.cpp
arrayQueue.o: arrayQueue.cpp arrayQueue.h queueInterface.h
g++ -c arrayQueue.cpp
customer.o: customer.cpp customer.h
g++ -c customer.cpp
event.o: event.cpp event.h
g++ -c event.cpp
clean:
rm *.o