16 lines
238 B
Makefile
16 lines
238 B
Makefile
|
but : jeux
|
||
|
OFILES = terrain.o \
|
||
|
time.o
|
||
|
CC = gcc
|
||
|
CFLAGS = -ansi -pedantic -lgraph -g
|
||
|
|
||
|
terrain.o = terrain.c
|
||
|
time.o = time.c
|
||
|
|
||
|
jeux : $(OFILES)
|
||
|
$(CC) $(CFLAGS) -o jeux $(OFILES)
|
||
|
|
||
|
clean : -rm -f $(OFILES) jeux
|
||
|
|
||
|
.PHONY : but clean
|