Kesalahan yang Anda temui:
*** pemisah yang hilang (maksud Anda TAB bukannya 8 spasi?). Berhenti.
Berarti makefile
mengandung spasi bukan Tab. The make
utilitas ini sangat pilih-pilih tentang penggunaan Spacebukan Tab. Jadi ada kemungkinan bahwa makefile
stanzas berisi Spacedi awal aturan dalam file.
Contoh
Katakanlah saya memiliki 3 .c
file berikut :
hello.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;
}
Katakanlah saya memiliki yang berikut ini 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!
Sekarang kami mencoba membangun target
Ketika saya menjalankannya terhadap target helloworld
:
$ make helloworld
makefile:3: *** missing separator (did you mean TAB instead of 8 spaces?). Stop.
Terlihat familier?
Memperbaiki masalah
Anda dapat memperbaikinya dengan mengubah karakter yang Spacessebenarnya Tab. Saya biasa vim
memperbaiki file saya. Cukup buka saja:
$ vim makefile
Dan kemudian jalankan perintah ini di dalam:
:%s/^[ ]\+/^I/
CATATAN: ^I
adalah karakter khusus. Mengetik ^diikuti oleh Iakan ditafsirkan berbeda dibandingkan Ctrl+ V- Ctrl+ I.
Ini akan menggantikan semua baris yang dimulai dengan 1 atau lebih Spacesdengan aktual Tab.
Sekarang ketika saya menjalankan kembali helloworld
target saya :
$ 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!
Referensi