source: bin/sc-mkf77sym.dox@ f27baf

Last change on this file since f27baf was 5d30c1, checked in by Frederik Heber <heber@…>, 13 years ago

Initial commit based on 3.0.0alpha (here claimed as 2.4).

  • simply added all files.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1
2/** \page sc-mkf77sym
3
4The sc-mkf77sym program is used to generate symbols for linking FORTRAN
5subroutines into MPQC.
6
7<h1>Synopsis</h1>
8
9<pre>
10sc-mkf77sym <i>input</i> <i>output</i>
11</pre>
12
13<h1>Description</h1>
14
15sc-mkf77sym requires two arguments: the name of the input file and the name
16of the output file. The input file contains C preprocessor definitions of
17the form '#define F77_FUNC' where FUNC is the name of a FORTRAN 77
18function. The output file assigns these definitions to the C symbol that
19will link with the FORTRAN 77 function. For example, if FORTRAN symbols
20are formed from the routine name by converting to lowercase and have
21appending an underscore, then the following input file:
22
23\code
24#define F77_DGEMM
25\endcode
26
27will result in the following ouput file:
28
29\code
30#define F77_DGEMM dgemm_
31\endcode
32
33<h1>License</h1>
34
35sc-mkf77sym is open-source software; you can redistribute it and/or modify it
36under the terms of the GNU General Public License as published by the Free
37Software Foundation; either version 2 of the License, or (at your option)
38any later version.
39
40<h1>Warranty</h1>
41
42sc-mkf77sym is distributed in the hope that it will be useful, but WITHOUT ANY
43WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
44FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
45details.
46
47*/
Note: See TracBrowser for help on using the repository browser.