.dir.info
changeset 133 5b5494f335a3
equal deleted inserted replaced
132:5be56a5e90b7 133:5b5494f335a3
       
     1 This directory contains the bytecode compiler classes. 
       
     2 These classes are needed for incremental compilation and
       
     3 for evaluation of expressions from strings.
       
     4 They are compiled by stc into the library 'libcomp'.
       
     5 
       
     6 Depending on the configuration and capabilities of your Operating-
       
     7 System, the resulting classlibrary is either:
       
     8 
       
     9         libcomp.a      - an archive
       
    10 
       
    11         libcomp.obj    - a prelinked object library
       
    12 
       
    13         libcomp.so     - a shared object
       
    14 
       
    15 the library includes init code (libcomp_Init) for all of its components.
       
    16 
       
    17 
       
    18 Things you can do here:
       
    19 
       
    20     make                compile all classes, producing libcomp
       
    21 
       
    22     make objs           compile all required object files
       
    23 
       
    24     make install        compile all and install in DESTLIBDIR
       
    25 
       
    26     make qinstall       only install - assumes binaries are up-to-date 
       
    27 
       
    28     make check          syntax check only over all .st files
       
    29 
       
    30     make <file>.o       compile <file>.st to object-file
       
    31 
       
    32     make <file>.c       compile <file>.st to c intermediate
       
    33 
       
    34     make clean
       
    35 
       
    36     make clobber