# Link command:
ASCII_RPG: main.o get_res.o loadalleg.o header.o functions.o
c++ main.o get_res.o loadalleg.o header.o functions.o -o ASCII_RPG
# Compilation commands:
main.o: main.cpp
c++ -c main.cpp -o main.o
get_res.o: gui.cpp
c++ -c gui.cpp -o get_res.o
loadalleg.o: loadalleg.cpp
c++ -c loadalleg.cpp -o loadalleg.o
Error: Makefile:2: *** commands commence before first target. Stop.
I understand that my error is on line 2, and that it has to do with syntax, but I can't figure out what is bothering it. Any help is greatly appreciated.