summaryrefslogtreecommitdiff
path: root/doc/UsersGuide/ThornWriters.tex
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-25 11:30:17 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-25 11:30:17 +0000
commita16e96a8a4de09f94091fecb985a89e5d6e6da34 (patch)
treecd7fd7b271ac7988b4b356297e7d6a5923aa1186 /doc/UsersGuide/ThornWriters.tex
parent377d6c6259463f6f21b6dd04b395e2ae126e9a8c (diff)
Added Naming Convention for Source Files.
Anything that we may have time to do :) but isn't yet implemented I'm adding with a FIXME tag, so that we can remove them if they don't get done. git-svn-id: http://svn.cactuscode.org/flesh/trunk@575 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'doc/UsersGuide/ThornWriters.tex')
-rw-r--r--doc/UsersGuide/ThornWriters.tex23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/UsersGuide/ThornWriters.tex b/doc/UsersGuide/ThornWriters.tex
index 362e2a51..f5c0572b 100644
--- a/doc/UsersGuide/ThornWriters.tex
+++ b/doc/UsersGuide/ThornWriters.tex
@@ -554,9 +554,32 @@ names ? }
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\section{Naming Conventions for Source Files}
+
+The make system uses file extensions
+to designate coding language. The following extensions are
+can be handled:
+
+\begin{center}
+\begin{tabular}{|c|c|}
+\hline
+Extension & Coding Language \\
+\hline
+{\t .F} & Fortran90 fixed form \\
+{\t .f} & (no preprocessing) Fortran90 fixed form [FIXME: To be implemented]\\
+{\t .F90} & Fortran90 free form form [FIXME: To be implemented]\\
+{\t .f90} & (no preprocessing) Fortran90 free form [FIXME: To be implemented]\\
+{\t .F77} & Fortran77 \\
+{\t .f77} & (no preprocessing) Fortran77 [FIXME: To be implemented]\\
+{\t .c} & C \\
+{\t .cc} or {\t .C} & C++ \\
+\hline
+\end{tabular}
+\end{center}
\section{Adding source files}
+
By default the CCTK looks in the {\tt src} directory of the thorn for source
files.