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 = cc
7F2C_CONFIG=-DCONFIG_FC_UNDERSCORE
8CFLAGS = -xO4 $(F2C_CONFIG)
9LINKER = $(CC)
10LDFLAGS =
11EXTRA_LIBS = -lm
12
13# M4 macro preprocessor
14M4 	= m4
15M4_OPTS = -B65536
16INDENT	= indent
17INDENT_OPTS = -ce -i2 -nfc1 -br -brs -cs -npcs -nprs -npsl
18
19#
20#  The name of the libraries to be created/linked to
21#
22XBLASLIB = libxblas.a
23
24#
25#  The archiver and the flag(s) to use when building archive (library)
26#  If your system has no ranlib, set RANLIB = echo.
27#
28ARCH         = ar
29ARCHFLAGS    = cr
30RANLIB       = ranlib
31