J'essaie d'utiliser GCC (linux) avec un makefile pour compiler mon projet.
J'obtiens l'erreur suivante qui ne semble pas déchiffrer dans ce contexte:
"No rule to make target 'vertex.cpp', needed by 'vertex.o'. Stop."
Voici le makefile:
a.out: vertex.o edge.o elist.o main.o vlist.o enode.o vnode.o
g++ vertex.o edge.o elist.o main.o vlist.o enode.o vnode.o
main.o: main.cpp main.h
g++ -c main.cpp
vertex.o: vertex.cpp vertex.h
g++ -c vertex.cpp
edge.o: edge.cpp edge.h
g++ -c num.cpp
vlist.o: vlist.cpp vlist.h
g++ -c vlist.cpp
elist.o: elist.cpp elist.h
g++ -c elist.cpp
vnode.o: vnode.cpp vnode.h
g++ -c vnode.cpp
enode.o: enode.cpp enode.h
g++ -c node.cpp
VPATH=
au lieu deVPATH+=
. Cela rend le fichier Makefile ne peut pas voir les fichiers lorsque le fichier est réellement là.