#
# Fortran compiler and options
#
FC= ftn -O3 
CC = cc -O3 

#
# Object files
#
OBJ=	stream_d.o second_wall.o

#
# Compile
#
stream_d:	$(OBJ)
	$(FC) -o $@ $(OBJ) 

.f.o:
	$(FC) -c $< 

#
# Clean out object files and the executable.
#
clean:
	rm *.o stream_d
