
CC=mpicc
CFLAGS=-g -O0

all: fsx-mpi

fsx-mpi: fsx-mpi.c
	$(CC) $(CFLAGS) -o fsx-mpi fsx-mpi.c

clean: ;
	@rm fsx-mpi
