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