
FC  = ifort
FFLAGS = -O

all:	hello_world_serial

clean:
	rm -f *.[oadD] *.[mM][oO][dD] hello_world_serial

hello_world_serial:	hello_world_serial.f90
	${FC} ${FFLAGS} -o hello_world_serial hello_world_serial.f90

