diff options
author | Farid Belahcene <farid.belahcene@inria.fr> | 2006-09-01 09:22:53 +0000 |
---|---|---|
committer | Farid Belahcene <farid.belahcene@inria.fr> | 2006-09-01 09:22:53 +0000 |
commit | 5488db444035768fc86c81961829c38cdb901a25 (patch) | |
tree | 06d1cf42e63d918dbe498b596f4ea74d7d1615b0 /scilab_doc | |
parent | d63bfc470bf7e28c0af8a2794c7cecaabb52e311 (diff) | |
download | scilab-5488db444035768fc86c81961829c38cdb901a25.zip scilab-5488db444035768fc86c81961829c38cdb901a25.tar.gz |
add readme.txt file
Diffstat (limited to 'scilab_doc')
-rw-r--r-- | scilab_doc/toolbox_guide/toolbox_example/readme.txt | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/scilab_doc/toolbox_guide/toolbox_example/readme.txt b/scilab_doc/toolbox_guide/toolbox_example/readme.txt new file mode 100644 index 0000000..7ae1b90 --- /dev/null +++ b/scilab_doc/toolbox_guide/toolbox_example/readme.txt | |||
@@ -0,0 +1,80 @@ | |||
1 | Guide for the toolboxes contributions | ||
2 | ===================================== | ||
3 | |||
4 | |||
5 | |||
6 | Guide (version xxx) | ||
7 | ==================== | ||
8 | |||
9 | Information about mytoolbox can be found at | ||
10 | http://xxx.xxx/mytoolbox.html | ||
11 | |||
12 | The program has been written by | ||
13 | XXXXXXXXX | ||
14 | |||
15 | |||
16 | Installation | ||
17 | ============ | ||
18 | To Install this toolbox: (Scilab-4.0) | ||
19 | |||
20 | We Suppose here that <PATH> stands for the path of the directory | ||
21 | containing this readme file. | ||
22 | |||
23 | - On Unix/Linux systems | ||
24 | * User | ||
25 | Has to execute,once and for all, the following instruction | ||
26 | within Scilab: | ||
27 | exec('<PATH>/builder.sce') | ||
28 | |||
29 | Should execute the following instruction within Scilab: | ||
30 | exec('<PATH>/loader.sce') | ||
31 | before using the toolbox, he can also put it in his | ||
32 | .scilab startup file for automatic loading. | ||
33 | |||
34 | - On Windows systems | ||
35 | * user | ||
36 | Has to execute, once and for all, the following instruction | ||
37 | within Scilab: | ||
38 | exec <PATH>\builder.sce | ||
39 | |||
40 | Should execute the following instruction within Scilab: | ||
41 | exec <PATH>\loader.sce | ||
42 | before using the toolbox, he can also put it in his | ||
43 | .scilab startup file for automatic loading. | ||
44 | |||
45 | |||
46 | Contents | ||
47 | ======== | ||
48 | readme.txt : this file | ||
49 | license.txt : license and copyright of your package | ||
50 | builder.sce : script to launche the sub-builders | ||
51 | loader.sce : script to launche the sub-loaders | ||
52 | |||
53 | src : directory of Fortran and C routines | ||
54 | buildsrc.sce : script for building library (compilation and linking) | ||
55 | loadsrc.sce : script for loading library (generated) | ||
56 | |||
57 | sci_gateway : directory of interfaces programs | ||
58 | |||
59 | includes : .h files | ||
60 | |||
61 | macros : directory of Scilab functions | ||
62 | builmacros.sce : script for building library | ||
63 | loadmacros.sce : script for loading library | ||
64 | *.sci : source versions | ||
65 | *.bin : precompiled binary versions (generated) | ||
66 | lib : scilab library binary save (generated) | ||
67 | |||
68 | help : directory for help. | ||
69 | buildhelp.sce : translates the xml files to html | ||
70 | loadhelp.sce : add your help functions files in the help Scilab browser | ||
71 | *.xml : xml help file | ||
72 | *.html : html help file (generated) | ||
73 | whatis : short function description (generated) | ||
74 | |||
75 | etc : .html, .pdf, .txt, .jpeg, ... | ||
76 | |||
77 | demos : examples to illustrate your toolbox | ||
78 | |||
79 | unit tests : directory of tests | ||
80 | tests.sce : script to test toolbox_example \ No newline at end of file | ||