fichier Makefile

This commit is contained in:
nguyenh 2022-12-11 15:24:48 +01:00
parent 3e691135f8
commit f7026bf1a1

17
Makefile Normal file
View File

@ -0,0 +1,17 @@
paires : main.o mode.o jeu.o
gcc -Wall -ansi -o paires.out main.o mode.o jeu.o -lgraph -lm
main.o : saeMain.c
gcc -c saeMain.c
mode.o : ChargerMode.c ChargerMode.h
gcc -c ChargerMode.c
jeu.o : Jeu.c Jeu.h
gcc -c Jeu.c
clean :
rm -f *.o
run :
./paires.out