SHLIB                  package:base                  R Documentation

_B_u_i_l_d _S_h_a_r_e_d _L_i_b_r_a_r_y _f_o_r _D_y_n_a_m_i_c _L_o_a_d_i_n_g

_D_e_s_c_r_i_p_t_i_o_n:

     The given source files are first compiled using `R COMPILE'.  All
     specified object files are then linked into a shared library which
     can be loaded into R using `dyn.load()'.

_U_s_a_g_e:

     R SHLIB [-o libname] files

_A_r_g_u_m_e_n_t_s:

   files: a list of names of (typically) source files to be compiled
          and included in the library.  You can also include the name
          of object files which are automagically made from their
          sources.

 libname: the full name of the shared library to be built, including
          the extension (typically `.so' on Unix systems).  If not
          given, the name of the library is taken from the first source
          file.

_S_e_e _A_l_s_o:

     `COMPILE', `dyn.load'

