comparison scripts/miscellaneous/mkoctfile.m @ 5671:387dd5b34757

[project @ 2006-03-15 20:10:45 by jwe]
author jwe
date Wed, 15 Mar 2006 20:11:46 +0000
parents
children f6ddb906e30f
comparison
equal deleted inserted replaced
5670:14313620a2c6 5671:387dd5b34757
1 ## Copyright (C) 2006 Keith Goodman
2 ##
3 ## This file is part of Octave.
4 ##
5 ## Octave is free software; you can redistribute it and/or modify it
6 ## under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2, or (at your option)
8 ## any later version.
9 ##
10 ## Octave is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING. If not, write to the Free
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 ## 02110-1301, USA.
19
20 ## -*- texinfo -*-
21 ## @deftypefn {Function File} {} mkoctfile ()
22 ## The @code{mkoctfile} shell script compiles source code written in C,
23 ## C++, or Fortran. Depending on the command-line options used with
24 ## @code{mkoctfile}, the compiled code can be called within Octave or
25 ## can be used as a stand-alone application.
26 ##
27 ## Run @code{mkoctfile} from the shell prompt, not from the Octave prompt.
28 ##
29 ## See the man or info page of @code{mkoctfile} for a full description.
30 ## @end deftypefn
31
32 function mkoctfile ()
33
34 error ("run mkoctfile from the shell prompt, not from the Octave prompt");
35
36 endfunction