include ../../Arch/make_inc

.SUFFIXES:
.PRECIOUS: %.o

%.o : %.f90
	$(CF90) -c $< $(CFLAGS)

PingPongParFun : PingPongParFun.o
	$(CF90) -o $@_$(ARCH).exe $(LDFLAGS) $^

PingPongParMult : PingPongParMult.o
	$(CF90) -o $@_$(ARCH).exe $(LDFLAGS) $^

all : PingPongParFun PingPongParMult
	@echo 'Compilation de PingPongParFun et de PingPongParMult'

clean :
	rm -f *.o core

cleanall :
	rm -f *.o *.exe core
