# 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 = gcc CFLAGS = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DBINTRAJ -DHASGZ -DHASBZ2 -O3 -mtune=native -DCONFIG_FC_UNDERSCORE -DHAVE_FPU_CONTROL_H -Dx86 LINKER = $(CC) 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 = -lm # M4 macro preprocessor. Used to generate C sources. M4 = m4 M4_OPTS = # Indent program. Used to prettify C source generated by M4. INDENT = indent INDENT_OPTS = -ce -i2 -nfc1 -br -brs -cs -npcs -nprs -npsl