27 lines
313 B
Makefile
27 lines
313 B
Makefile
#Snake : fichier Makefile
|
|
|
|
#BUT FINAL
|
|
|
|
but : snake
|
|
|
|
#VARIABLES
|
|
|
|
OFILES = plateau_init.o \
|
|
fenetre.o \
|
|
main.o
|
|
|
|
CC = gcc
|
|
|
|
CFLAGS = -ansi - pedantic -lgraph
|
|
|
|
#DEPENDANCES (REGLES IMPLICITES)
|
|
|
|
plateau_init.o : plateau_init.h
|
|
|
|
fenetre.o : fenetre.h plateau_init.h
|
|
|
|
main.o : fenetre.h
|
|
|
|
|
|
#DEPENDANCES AVEC COMMANDES
|