1This document describes how to generate the C files
2from the M4 templates, mostly intended for developers.
3
4- Appropriate make.inc definition must first be supplied.
5  There are several sample make.incs for various platforms
6  provided.  Or you can try to have autoconf guess them for
7  you; to do this you need to do
8
9    autoconf
10    ./configure
11
12  This will create a make.inc appropriate for the compiler(s)
13  found.  This will also create a Makefile from Makefile.m4.
14  You can specify which compiler to use by CC and FC environment
15  variables.  For details, see "./configure --help".
16
17- If make.inc was configured manually, create the top-level
18  Makefile is generated from Makefile.m4.  Just do
19  "m4 Makefile.m4 >Makefile"
20
21- Then run "make makefiles".  This will generate all
22  the makefiles in various directories from m4 template.
23
24- Then run "make sources test-sources".  This will create
25  all the C source files for both XBLAS library code and
26  testing code.
27
28