CFLAGS = -Wall # il faut mettre le nom de votre fichier principal (sans le ".c" ici) NOM = hyvernat-www all: test test: graphes.o $(NOM).o test.o gcc $(CFLAGS) -o test graphes.o $(NOM).o test.o graphes.o: graphes.c graphes.h gcc $(CFLAGS) -c graphes.c $(NOM).o: $(NOM).c gcc $(CFLAGS) -c $(NOM).c test.o: test.c gcc $(CFLAGS) -c test.c clean: rm -f test graphes.o $(NOM).o test.o