1 # 2 # Makefile.ALPHA 3 # 4 # 5 # If you compile, change the name to Makefile.in. 6 # 7 # 8 9 #----------------------------------------------------------------------------- 10 # Shell 11 #----------------------------------------------------------------------------- 12 13 SHELL = /bin/sh 14 15 #----------------------------------------------------------------------------- 16 # Platform 17 #----------------------------------------------------------------------------- 18 19 PLAT = ALPHA 20 21 #----------------------------------------------------------------------------- 22 # Libraries and includs 23 #----------------------------------------------------------------------------- 24 25 BLLIB = libblas.a 26 CBLIB = ../lib/cblas_$(PLAT).a 27 28 #----------------------------------------------------------------------------- 29 # Compilers 30 #----------------------------------------------------------------------------- 31 32 CC = cc 33 FC = f77 34 LOADER = $(FC) 35 36 #----------------------------------------------------------------------------- 37 # Flags for Compilers 38 #----------------------------------------------------------------------------- 39 40 CFLAGS = -std1 -I/usr/include -assume aligned_objects -DADD_ 41 FFLAGS = -f -u 42 LOADFLAGS = 43 44 #----------------------------------------------------------------------------- 45 # Archive programs and flags 46 #----------------------------------------------------------------------------- 47 48 ARCH = ar 49 ARCHFLAGS = r 50 RANLIB = ranlib 51