1############################################################################
2#
3#  Program:         XBLAS
4#
5#  Module:          make.inc
6#
7#  Purpose:         Top-level Definitions
8#
9#  Creation date:   September 1, 1999, Version 0.0
10#
11#  Modified:	    June 1, 2000, Version 1.0
12############################################################################
13#
14# Basic include options.
15# CC is the C compiler, normally invoked with options CFLAGS.
16# LINKER and LDFLAGS function as CC and CFLAGS, but for linking stages.
17#
18CC = cc
19F2C_CONFIG=-DCONFIG_FC_UCASE
20CFLAGS = -O3 $(F2C_CONFIG)
21LINKER = $(CC)
22LDFLAGS =
23EXTRA_LIBS = -lm
24
25# M4 macro preprocessor
26M4 	= m4
27M4_OPTS = -B65536
28INDENT	= indent
29INDENT_OPTS = -ce -i2 -nfc1 -br -brs -cs -npcs -nprs -npsl
30
31#
32#  The name of the libraries to be created/linked to
33#
34XBLASLIB = libxblas.a
35
36#
37#  The archiver and the flag(s) to use when building archive (library)
38#  If your system has no ranlib, set RANLIB = echo.
39#
40ARCH         = ar
41ARCHFLAGS    = cr
42RANLIB       = ranlib
43