TP-calcul-parallele/TP1/02_Limite/Makefile

15 lines
164 B
Makefile
Raw Permalink Normal View History

2023-06-23 17:34:09 +00:00
MPICC=smpicc
CFLAGS=-g -O4
all: limite
clean:
rm -rf *.o limite
%.o: %.c
echo $@
$(MPICC) -c -Wall -o $@ $<
limite: limite.o
$(MPICC) -Dhave_mpi -o $@ $^