# For normal compilation uncomment the following lines
#FFLAGS = -O4
#LIBS =
 
#FC = /usr/bin/f77
#FC = /usr/bin/g77
#FC = /usr/bin/gfortran

#PROLIB = /opt/SUNWspro/SC4.2/lib/libp

# For profiling instead uncomment the next 1 or 2 lines. The second
# profiles calls to the maths library.
#FFLAGS = -pg -O4 # -nolibmil
#FFLAGS = -Wall -O2 -malign-double
#LIBS = $(PROLIB)/libF77.a $(PROLIB)/libsunmath.a $(PROLIB)/libm.a

OBJS = funNorman.o linear.o 

PROGRAM = funNorman

$(PROGRAM): $(OBJS) 
	$(LINK.f) -o $(PROGRAM) $(OBJS) $(FFLAGS) $(LIBS)
	
clean:
	-rm -f $(OBJS)
