# make.inc template. # # The configure script will attempt to detect the settings and substitute # variables of the form @...@. # # The name of the libraries to be created/linked to XBLASLIB = libxblas.a XBLASLIB_AMB = libxblas-amb.a # CC is the C compiler, normally invoked with options CFLAGS. # LINKER and LDFLAGS function as CC and CFLAGS, but for linking stages. CC = @CC@ CFLAGS = @CFLAGS@ LINKER = $(CC) LDFLAGS = @LDFLAGS@ # The archiver and the flag(s) to use when building archive (library) # If your system has no ranlib, set RANLIB = echo. ARCH = ar ARCHFLAGS = cr RANLIB = @RANLIB@ # Extra libraries needed for xblas test code. EXTRA_LIBS = @EXTRA_LIBS@ # M4 macro preprocessor. Used to generate C sources. M4 = @M4@ M4_OPTS = @M4_OPTS@ # Indent program. Used to prettify C source generated by M4. INDENT = @INDENT@ INDENT_OPTS = @INDENT_OPTS@