# makefile for testing vector intrinsic routines on the Sun HPC10000 # # Author: Bob Sinkovits, SDSC 2/16/00 # # NOTE: Assembly code can be generated by using -S option. See commented # lines below FORTRAN = f90 LDR = f90 #Comment out all but one of the choices below for FOPTS # -xnolibmopt prevents loading of fast scalar intrinsics # -xvector causes vector intrinics to be used #FOPTS = -fast -xnolibmopt -Xlist #FOPTS = -fast -xnolibmopt -xvector -Xlist #FOPTS = -fast -Xlist FOPTS = -fast -xvector -Xlist LIBS = simvec: simvec.o $(LDR) $(FOPTS) -o $@ simvec.o $(LIBS) #simvec: simvec.s # $(LDR) $(FOPTS) -o $@ simvec.s $(LIBS) .f.o: $(FORTRAN) $(FOPTS) -c $< #.f.s: # $(FORTRAN) $(FOPTS) -S $<