include ../../Arch/make_inc

.SUFFIXES:
.PRECIOUS: %.o

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

%.o : %.c
	$(CC) -c $< $(CFLAGS)

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

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

clean :
	rm -f *.o core

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