SHELL=/bin/sh

# Compiler and compiler options
# ======================================================================

FC        = pgf90
CC        = gcc
FFLAGS    =  -Mfree -O2  -I.
INC       = ../../inc
LDINCLUDE = -I${INC} 

#Objects
# ======================================================================

all: timer.o
     


clean:
	/bin/rm -f *.o

#SPECIAL DEPENDENCIES and compilation
# ======================================================================

timer.o: timer.for ${INC}/timer.fi



#Default compilation
# ======================================================================

.SUFFIXES: .for
.for.o:	                ; $(FC) $(FFLAGS) $(LDINCLUDE) -c $*.for