1# make.inc template.
2#
3# The configure script will attempt to detect the settings and substitute
4# variables of the form @...@.
5#
6
7# The name of the libraries to be created/linked to
8XBLASLIB = libxblas.a
9
10# CC is the C compiler, normally invoked with options CFLAGS.
11# LINKER and LDFLAGS function as CC and CFLAGS, but for linking stages.
12CC = @CC@
13CFLAGS = @CFLAGS@
14LINKER = $(CC)
15LDFLAGS = @LDFLAGS@
16
17# The archiver and the flag(s) to use when building archive (library)
18# If your system has no ranlib, set RANLIB = echo.
19ARCH         = ar
20ARCHFLAGS    = cr
21RANLIB       = @RANLIB@
22
23# Extra libraries needed for xblas test code.
24EXTRA_LIBS = @EXTRA_LIBS@
25
26# M4 macro preprocessor.  Used to generate C sources.
27M4 	= @M4@
28M4_OPTS = @M4_OPTS@
29
30# Indent program.  Used to prettify C source generated by M4.
31INDENT	= @INDENT@
32INDENT_OPTS = @INDENT_OPTS@
33
34