I can't run make
with my Makefile. I got this message:
Makefile:8: *** missing separator. Stop.
I really don't know why, I already checked everything and I can't find any problem.
I already tried cat -e -t -v Makefile
to see if I added a space, but I didn't find nothing.
Makefile code
CC=gcc
BINARY = airt
VERSION = v1.0.0-beta
FILES = chunk.h chunk.c memory.h memory.c common.h main.c
@echo $(VERSION)
@echo "Compiling..."
airt: $(FILES)
$(CC) -o $(BINARY) $(FILES)
clean:
rm -rf *.o
rm -rf $(BINARY)