include ../../make_sp6.sys

01-hello.x: 01-hello.o
	$(MPICC) -o 01-hello.x 01-hello.o

01-hello.o: 01-hello.c
	$(MPICC) $(CFLAG) -c 01-hello.c

clean:
	rm -f *.o *~ 01-hello.x
