Bonjour,

regardez je fais ceci:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
#
# Barbara makefile
#
 
all: barbara
barbara: main.o chess.o net.o
	gcc -o barbara main.o chess.o net.o
 
chess.o: chess.c chess.h head.h
	gcc -c chess.c
 
net.o: net.c net.h head.h
	gcc -c net.c
 
main.o: main.c head.h 
	gcc -c main.c
 
clean:
	rm -rf *.o
 
mrproper: clean
	rm -rf barbara
Mais en sortie j'ai des erreurs qui disent qu'il ne trouve pas les headers ...
c'est dû à quoi?
merci