Here is my makefile:
build: Starter.o Executor.o
g++ Starter.o Executor.o -o Starter
Starter.o: Starter.c
g++ -c Starter.c
Executor.o: Executor.c Executor.h
g++ -c Executor.c
clean:
rm *.o Starter
What am I doing wrong to be getting this error?
"*** missing separator. Stop. "