L'errore che stai riscontrando:
*** separatore mancante (intendevi TAB invece di 8 spazi?). Fermare.
Significa che makefile
contiene spazi anziché Tab. L' make
utilità è notoriamente esigente riguardo all'uso di Spaceinvece di Tab. Quindi è probabile che makefile
contenga Spaceall'inizio delle stanze delle regole all'interno del file.
Esempio
Diciamo che ho i seguenti 3 .c
file:
Ciao C
char *
hello()
{
return "Hello";
}
world.c
char *
world()
{
return "world";
}
main.c :
#include <stdio.h>
/* Prototypes. */
char *hello();
char *world();
int
main(int argc, char *argv[])
{
printf("%s, %s!\n", hello(), world());
return 0;
}
Di 'che ho il seguente Makefile
:
# The executable 'helloworld' depends on all 3 object files
helloworld: main.o hello.o world.o
cc -o helloworld main.o hello.o world.o # Line starts with TAB!
# Build main.o (only requires main.c to exist)
main.o: main.c
cc -c main.c # Line starts with TAB!
# Build hello.o (only requires hello.c to exist)
hello.o: hello.c
cc -c hello.c # Line starts with TAB!
# Build world.o (only requires world.c to exist)
world.o: world.c
cc -c world.c # Line starts with TAB!
# Remove object files, executables (UNIX/Windows), Emacs backup files,
#+ and core files
clean:
rm -rf *.o helloworld *~ *.core core # Line starts with TAB!
Ora proviamo a costruire un obiettivo
Quando lo eseguo contro l'obiettivo helloworld
:
$ make helloworld
makefile:3: *** missing separator (did you mean TAB instead of 8 spaces?). Stop.
Ti sembra familiare?
Risolvere il problema
È possibile risolvere questo problema cambiando Spacesin Tabcaratteri effettivi . Ero solito vim
riparare il mio file. Basta aprirlo:
$ vim makefile
E quindi eseguire questo comando all'interno di:
:%s/^[ ]\+/^I/
NOTA: ^I
è un carattere speciale. La digitazione ^seguita da Iverrà interpretata diversamente rispetto a Ctrl+ V- Ctrl+ I.
Questo sostituirà tutte le righe che iniziano con 1 o più Spacescon un effettivo Tab.
Ora, quando riesco a helloworld
raggiungere il mio obiettivo:
$ make helloworld
cc -c main.c # Line starts with TAB!
cc -c hello.c # Line starts with TAB!
cc -c world.c # Line starts with TAB!
cc -o helloworld main.o hello.o world.o # Line starts with TAB!
Riferimenti