3 #######################################################################
4 # This makefile creates the test programs for the BLAS 2 routines.
5 # The test files are grouped as follows:
6 # SBLAT2 -- Single precision real test routines
7 # CBLAT2 -- Single precision complex test routines
8 # DBLAT2 -- Double precision real test routines
9 # ZBLAT2 -- Double precision complex test routines
11 # Test programs can be generated for all or some of the four different
12 # precisions. To create the test programs, enter make followed by one
13 # or more of the precisions desired. Some examples:
16 # make single double complex complex16
17 # Alternatively, the command
19 # without any arguments creates all four test programs.
20 # The executable files which are created are called
21 # ../xblat2s, ../xblat2d, ../xblat2c, and ../xblat2z
23 # To remove the object files after the executable files have been
26 # To force the source files to be recompiled, enter, for example,
29 #######################################################################
39 all: single double complex complex16
47 $(LOADER) $(LOADOPTS) $(SBLAT2) \
48 $(BLASLIB) -o ../xblat2s
51 $(LOADER) $(LOADOPTS) $(CBLAT2) \
52 $(BLASLIB) -o ../xblat2c
55 $(LOADER) $(LOADOPTS) $(DBLAT2) \
56 $(BLASLIB) -o ../xblat2d
59 $(LOADER) $(LOADOPTS) $(ZBLAT2) \
60 $(BLASLIB) -o ../xblat2z
74 $(FORTRAN) $(OPTS) -c $< -o $@