# HG changeset patch # User jwe # Date 1142453506 0 # Node ID 387dd5b347576b20f36e432267bf13629b3a3c4a # Parent 14313620a2c675dd001b99d71abaa9ef33c994c8 [project @ 2006-03-15 20:10:45 by jwe] diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2006-03-15 Keith Goodman + + * miscellaneous/mkoctfile.m: New file. + 2006-03-15 John W. Eaton * polynomial/residue.m: Use & instead of && to generate arg for find. diff --git a/scripts/miscellaneous/mkoctfile.m b/scripts/miscellaneous/mkoctfile.m new file mode 100644 --- /dev/null +++ b/scripts/miscellaneous/mkoctfile.m @@ -0,0 +1,36 @@ +## Copyright (C) 2006 Keith Goodman +## +## This file is part of Octave. +## +## Octave is free software; you can redistribute it and/or modify it +## under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2, or (at your option) +## any later version. +## +## Octave is distributed in the hope that it will be useful, but +## WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with Octave; see the file COPYING. If not, write to the Free +## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +## 02110-1301, USA. + +## -*- texinfo -*- +## @deftypefn {Function File} {} mkoctfile () +## The @code{mkoctfile} shell script compiles source code written in C, +## C++, or Fortran. Depending on the command-line options used with +## @code{mkoctfile}, the compiled code can be called within Octave or +## can be used as a stand-alone application. +## +## Run @code{mkoctfile} from the shell prompt, not from the Octave prompt. +## +## See the man or info page of @code{mkoctfile} for a full description. +## @end deftypefn + +function mkoctfile () + + error ("run mkoctfile from the shell prompt, not from the Octave prompt"); + +endfunction