30 lines
477 B
Makefile
30 lines
477 B
Makefile
|
but : snake
|
||
|
|
||
|
OFILES = main.o \
|
||
|
serpent.o \
|
||
|
pomme.o \
|
||
|
terrain.o\
|
||
|
temps_et_score.o
|
||
|
|
||
|
CC = gcc
|
||
|
|
||
|
CFLAGS = -Wall -ansi -pedantic -g
|
||
|
|
||
|
serpent.o : serpent.h terrain.h temps_et_score.h
|
||
|
|
||
|
pomme.o : pomme.h terrain.h serpent.h
|
||
|
|
||
|
main.o : serpent.h pomme.h temps_et_score.h terrain.h
|
||
|
|
||
|
temps_et_score.o : temps_score.h
|
||
|
|
||
|
terrain.o : menu_terrain.h
|
||
|
|
||
|
snake : $(OFILES)
|
||
|
$(CC) $(CFLAGS) -o snake $(OFILES) -lgraph
|
||
|
|
||
|
clean :
|
||
|
-rm -f $(OFILES) snake
|
||
|
|
||
|
.PHONY : but clean
|