Add Makefile

This commit is contained in:
flyingscorpio@pinebookpro 2021-11-30 16:50:08 +01:00
parent adffdb1332
commit 54ae835afc
2 changed files with 8 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
jeu

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
all: jeu
jeu: main.c affichage.c affichage.h partie.c partie.h
cc main.c affichage.c affichage.h partie.c partie.h -o jeu
clean:
rm -f jeu