Skip to content
Snippets Groups Projects
Commit 2ea2e65b authored by SENSENBRENNER AMAURY's avatar SENSENBRENNER AMAURY
Browse files

Add new file

parent ef577eb2
No related merge requests found
Makefile 0 → 100644
#
#MAKEFILE
#
CC = gcc -c -g
CFLAGS = -Wall
main: main.o jeu.o io.o grille.o
gcc $(CFLAGS) -o main main.o jeu.o io.o grille.o
main.o: main.c jeu.h io.h grille.h
$(CC) $(CFLAGS) main.c
jeu.o: jeu.c jeu.h
$(CC) $(CFLAGS) jeu.c
io.o: io.c io.h
$(CC) $(CFLAGS) io.c
grille.o: grille.c grille.h
$(CC) $(CFLAGS) grille.c
clean:
rm jeu.o io.o grille.o
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment