File: G_make.cat

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (31 lines) | stat: -rw-r--r-- 1,231 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
G_make            Scilab Group            Scilab Function            G_make
NAME
   G_make - call make or nmake 
  
CALLING SEQUENCE
 Rfiles=G_make(files,dllname)
PARAMETERS
 files      : a character string or a vector of character string.
            
 dllname    : a character string.
            
 Rfiles     : vector of character string. Rfiles can be used as a first
            argument when calling addinter function.
            
DESCRIPTION
   On Unix like systems (i.e unix or windows/gcwin32) G_make calls the make
  utility for building target files and returns the value of files in the
  variable Rfiles. On windows platforms, (i.e when Scilab was compiled with
  Microsoft VisualC++). G_make calls the nmake utility for building target
  dllname and it returns the value of dllname in the variable Rfiles.  Of
  course G_make will work if apropriate Makefiles are  provided in the
  current Scilab directory. 
  
   G_make can be used to provide OS independant call to addinter.  and such
  examples can be found in the directory SCIDIR/examples/addinter-examples
  
 files=G_make([TMPDIR+'/ex1cI.o',TMPDIR+'/ex1c.o'],'ex1c.dll');// compilation 
 addinter(files,'foobar','foubare'); // link 
SEE ALSO
   addinter