# Thu Sep 05, 1996  04:10:52 PM
#----------------------------------------------
# Define macros used for compiling and linking 
#----------------------------------------------

COMPILER= f77
FFLAGS  = -O
BLAS_LIB=

#COMPILER= c++
#FFLAGS  = -O +FPVZOD
#BLAS_LIB= -lessl -lblas\
#    -L/usr/local/pvm/lib/RS6K/libfpvm3.a -L/usr/local/pvm/lib/RS6K/libpvm3.a

OBJS =  \
      Main.o \
      cgnr.o \
      driver.o \
      inputs.o \
      routines.o

HDRS = \
      commons.h

#----------------------------
# List of everything to make
#----------------------------

xx: $(OBJS) $(HDRS)
	$(COMPILER) $(FFLAGS) -o xx $(OBJS) $(BLAS_LIB)
	$(HOME)/bin/f77clean

yy: $(OBJS) $(HDRS)
	$(COMPILER) $(FFLAGS) -o yy $(OBJS) $(BLAS_LIB)
	$(HOME)/bin/f77clean

clean:
	/bin/rm -f *.o *.bak
