Hi I've been trying to compile my code using a makefile but it keeps giving me the missing *** separator. Stop
error. I made sure that after every line where I do a command I press tab. I'm not sure where I'm going wrong here.
output: main.o funcs.o
g++ main.o -o main.o funcs.o -o output
main.o: main.cpp
g++ -c main.cpp
funcs.o: funcs.cpp classes.hpp
g++ -c funcs.cpp
clean:
rm *.o output