Error message from make: missing separator

Possible duplicate:
Error: missing delimiter

I made a lot of make files, but today I am doing simple and it does not work because there is no separator.

CC = g++ CFLAGS = -O2 -Wall LDFLAGS = MODULOS = externa libreria ann PARTES = metodos backprop BackApp EXECUTABLE = atras .PHONY: clean install uninstall all: externa libreria ann $(CC) $(CFLAGS) –c $(PARTES).o –o $(EXECUTABLE) external: metodos.cpp metodos.h $(CC) –c $(CFLAGS) metodos.cpp libreria: backprop.cpp backprop.h $(CC) $(CFLAGS) –c backprop.cpp ann: $(CC) $(CFLAGS) –c BackApp.cpp clean: rm –f $(PARTES).o install: cp juego /usr/games/juego uninstall: sudo rm /usr/games/juego 

The error concerns the next line after outer line 14. The error says:

 *** missing separator 

but I don’t know how to solve it.

+4
source share
1 answer

You probably have spaces instead of tabs for indentation on this line.

+10
source

Source: https://habr.com/ru/post/1391654/


All Articles