~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/fr/functions/genlib.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 
2
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>eng</LANGUAGE>
 
5
  <TITLE>genlib</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>Nov 2000</DATE>
 
8
  <SHORT_DESCRIPTION name="genlib"> build library from all functions in given directory</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>genlib(lib-name [,dir-name, [ force [,verbose]]])  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
    <PARAM_INDENT>
 
14
      <PARAM_ITEM>
 
15
        <PARAM_NAME>lib-name:  </PARAM_NAME>
 
16
        <PARAM_DESCRIPTION>
 
17
          <SP>Scilab string.  The variable name of the library to (re)create.</SP>
 
18
        </PARAM_DESCRIPTION>
 
19
      </PARAM_ITEM>
 
20
      <PARAM_ITEM>
 
21
        <PARAM_NAME>dir-name:  </PARAM_NAME>
 
22
        <PARAM_DESCRIPTION>
 
23
          <SP>Scilab string.  The name of the directory to look for <VERB>.bin</VERB>-files; default value is the current directory.</SP>
 
24
        </PARAM_DESCRIPTION>
 
25
      </PARAM_ITEM>
 
26
      <PARAM_ITEM>
 
27
        <PARAM_NAME>force,verbose</PARAM_NAME>
 
28
        <PARAM_DESCRIPTION>
 
29
          <SP>: boolean values (default values <VERB>%f</VERB>).</SP>
 
30
        </PARAM_DESCRIPTION>
 
31
      </PARAM_ITEM>
 
32
    </PARAM_INDENT>
 
33
  </PARAM>
 
34
  <DESCRIPTION>
 
35
    <P>
 
36
    For each <VERB>.sci</VERB> file in <VERB>dir-name</VERB>, <VERB>genlib</VERB> executes a
 
37
    <VERB>getf</VERB> and saves the functions to the corresponding <VERB>.bin</VERB>
 
38
    file.  The <VERB>.sci</VERB> file must not contain anything but Scilab
 
39
    functions.  If a <VERB>.bin</VERB> file is newer than the associated
 
40
    <VERB>.sci</VERB> file, <VERB>genlib</VERB> does not translate and save the file.</P>
 
41
    <P>
 
42
    This default behaviour can be changed if <VERB>force</VERB> is given and 
 
43
    set to <VERB>%t</VERB>. In this latter case the recompilation iis always 
 
44
    performed for each <VERB>.sci</VERB> file.</P>
 
45
    <P>
 
46
    When all <VERB>.sci</VERB> files have been processed, <VERB>genlib</VERB> creates a
 
47
    library variable named <VERB>lib-name</VERB> and saves it in the file
 
48
    <VERB>lib</VERB> in <VERB>dir-name</VERB>.</P>
 
49
    <P>
 
50
    If <VERB>verbose</VERB> is et to <VERB>%t</VERB> informations are displayed during 
 
51
    the build process.</P>
 
52
  </DESCRIPTION>
 
53
  <SECTION label="Restrictions">
 
54
    <P>
 
55
    Scilab tacitly assumes that file <VERB>foo.sci</VERB> defines only a single function named <VERB>foo</VERB>.</P>
 
56
  </SECTION>
 
57
  <SEE_ALSO>
 
58
    <SEE_ALSO_ITEM>
 
59
      <LINK>getf</LINK>
 
60
    </SEE_ALSO_ITEM>
 
61
    <SEE_ALSO_ITEM>
 
62
      <LINK>save</LINK>
 
63
    </SEE_ALSO_ITEM>
 
64
    <SEE_ALSO_ITEM>
 
65
      <LINK>lib</LINK>
 
66
    </SEE_ALSO_ITEM>
 
67
  </SEE_ALSO>
 
68
</MAN>