-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Many important changes. First, I reorganized the source directory sli…
…ghtly, adding the subdirectory Numerical. Additionally, I rewrote the comments in order to work with f90doc, which is now included in the binary folder. I added the FoBiS.py script and a fobos file which defines the default build parameters and the task to produce documentation. Finally, I added a new dummy module, which can be used to load all other Futility modules.
- Loading branch information
1 parent
3708e11
commit 307e655
Showing
28 changed files
with
10,448 additions
and
5,286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
f90doc is distributed according to the MIT License; see also | ||
http://www.opensource.org/licenses/mit-license.php | ||
|
||
Copyright (c) 1997-2006 Erik D. Demaine | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
This is f90doc version 0.4.0, a documentation tool for Fortran 90. For | ||
more information (e.g., documentation), see | ||
|
||
http://theory.lcs.mit.edu/~edemaine/f90doc | ||
|
||
or contact Erik Demaine ([email protected]). Comments, suggestions, | ||
criticisms, and bug reports go to this e-mail address. If you modify f90doc or | ||
use it in a serious way, please contact me (I'd be interested). | ||
|
||
COPYRIGHT | ||
|
||
f90doc is freeware. If you use it in a research or commercial project, you | ||
must acknowledge the software and its author. I would also appreciate it if | ||
you contact me -- I'd like to know how f90doc is used. If you base code on | ||
f90doc, you must acknowledge this. Again, please let me know if you think your | ||
changes would be at all useful to the rest of the world (even if you are not | ||
willing to share it, the ideas may be useful). | ||
|
||
This information must accompany any copy of f90doc. | ||
|
||
INSTALLATION | ||
|
||
You shouldn't have to compile anything. You can put the file f90doc in | ||
a more accessible place, but the .pl files have to be in the same directory. | ||
Alternatively, you can create a symlink to the real f90doc, where the .pl | ||
files are held. For example, | ||
|
||
ln -s /usr/local/lib/f90doc-0.4.0/f90doc /usr/local/bin/f90doc | ||
|
||
If you don't have a command /usr/bin/env, you'll need to replace the first line | ||
of f90doc with | ||
|
||
#!/path/to/perl5/bin/perl -w | ||
|
||
Otherwise, Perl version 5.003 or higher must be the first program called "perl" | ||
in your path. |
Oops, something went wrong.