Hello,
So I am just starting to really use Make files in Linux, and I am getting the following error when I try to "make":
c++ -c main.cxx
In file included from main.cxx:2:
LinkedList.h:39:26: error: LinkedList.cxx: No such file or directory
make: *** [main.o] Error 1
Here is my make file, I have no experience with make files so I am not sure now to read the error:
program2: main.o LinkedList.o
c++ -o program2 main.cxx LinkedList.cxx
main.o: main.cxx LinkedList.h
c++ -c main.cxx
LinkedList.o: LinkedList.cxx LinkedList.h
c++ -c LinkedList.cxx
clean:
rm program2 LinkedList.o main.o