1#
2# Basic include options.
3# CC is the C compiler, normally invoked with options CFLAGS.
4# LINKER and LDFLAGS function as CC and CFLAGS, but for linking stages.
5#
6CC = gcc
7# For gfortran
8#F2C_CONFIG=-DCONFIG_FC_UNDERSCORE
9# For g77 or gfortran -ff2c
10F2C_CONFIG=-DCONFIG_FC_DBL_UNDERSCORE -DCONFIG_FC_RETURNS_DBL_REAL
11CFLAGS = -O3 -Dx86 -Wall $(F2C_CONFIG)
12LINKER = $(CC)
13LDFLAGS =
14EXTRA_LIBS = -lm
15
16# M4 macro preprocessor
17M4 	= m4
18M4_OPTS =
19INDENT	= indent
20INDENT_OPTS = -ce -i2 -nfc1 -br -brs -cs -npcs -nprs -npsl
21
22#
23#  The name of the libraries to be created/linked to
24#
25XBLASLIB = libxblas.a
26
27#
28#  The archiver and the flag(s) to use when building archive (library)
29#  If your system has no ranlib, set RANLIB = echo.
30#
31ARCH         = ar
32ARCHFLAGS    = cr
33RANLIB       = ranlib
34