projet de Memory en C

This commit is contained in:
LAFFEA DIDOT Loryne
2023-04-20 14:12:27 +02:00
commit f87a304958
37 changed files with 497 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
Memory.exe : main.o partie_graphique.o jeu.o cartes.o
gcc -o Memory.exe main.o partie_graphique.o jeu.o cartes.o -lgraph
main.o : main.c cartes.h partie_graphique.h
gcc -c main.c -lgraph
partie_graphique.o : partie_graphique.c partie_graphique.h jeu.h cartes.h
gcc -c partie_graphique.c -lgraph
jeu.o : jeu.c jeu.h partie_graphique.h
gcc -c jeu.c -lgraph
cartes.o : cartes.c cartes.h
gcc -c cartes.c -lgraph