# A trivial Makefile for mpiload
#
# Modify these as appropriate.  It's especially important to remove the
# -D__iX86__ definiition if you're NOT on a PentiumPro or PentiumII
# You'll need appropriate flags to to find <mpi.h>, and link with
# MPI functions.
CC=mpicc
CFLAGS= -D__iX86__=686 -O2 -ffast-math
LOADLIBES=-lm

mpiload : mpiload.o hwclock.o
	$(CC) -o $@ mpiload.o hwclock.o $(LOADLIBES)

