.dir.info
changeset 468 72dfba4603b4
equal deleted inserted replaced
467:8f5d7d58ceef 468:72dfba4603b4
       
     1 This directory contains the basic classes. 
       
     2 They are compiled by stc into the library 'libbasic' to be
       
     3 linked to your application. It is also needed to build a complete 
       
     4 smalltalk (the one you're currently in).
       
     5 
       
     6 Depending on the configuration and capabilities of your Operating-
       
     7 System, the resulting classlibrary is either:
       
     8 
       
     9 	libbasic.a	- an archive
       
    10 
       
    11 	libbasic.obj	- a prelinked object library
       
    12 
       
    13 	libbasic.so	- a shared object
       
    14 
       
    15 the library includes init code (libbasic_Init) for all of its components.
       
    16 
       
    17 
       
    18 Things you can do here:
       
    19 
       
    20     make                compile all classes, producing libbasic
       
    21 
       
    22     make objs           compile all 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 <file>.chk     run syntax check on <file>.st
       
    35 
       
    36     make clean		clean individual .o-files; leave library
       
    37 
       
    38     make clobber	clean everything