SAE11_2023/SAE_semestre1/Makefile
2023-11-30 13:44:06 +01:00

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