home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a076 / 3.img / DCLIPDEV / ARTFUL.ZIP / ARTFUL.DOC < prev    next >
Encoding:
Text File  |  1989-06-08  |  2.0 KB  |  58 lines

  1.  
  2. ARTFUL.LIB is a library of applications and functions which is written
  3. mostly in Clipper.  Several of the ARTFUL modules are written in C,
  4. therefore it is necessary to link these few modules into an engine. 
  5. The remaining ARTFUL system can be run from a dynamic library.
  6.  
  7.  
  8. How to create a DCLIP Developer's Engine for ARTFUL Version 1.02
  9. ----------------------------------------------------------------
  10.  
  11. 1. Compile the file DCLIPART.PRG as follows:
  12.  
  13.    CLIPPER DCLIPART -m -l
  14.  
  15. 2. Build the DCLIPART.EXE Engine as follows:
  16.  
  17.    PLINK86 @DCLIPART
  18.  
  19.  
  20. How to create a DCLIPRUN Runtime Engine for ARTFUL Version 1.02
  21. ----------------------------------------------------------------
  22.  
  23. 1. Compile the file DCRUNART.PRG as follows:
  24.  
  25.    CLIPPER DCRUNART -m -l
  26.  
  27. 2. Build the DCRUNART.EXE Engine as follows:
  28.  
  29.    PLINK86 @DCRUNART
  30.  
  31.  
  32.  
  33. How to create a dynamic library for ARTFUL Version 1.02
  34. --------------------------------------------------------
  35.  
  36. 1.  Create a directory on your hard disk named \ARTDLB
  37.  
  38. 2.  Copy all the source code .PRG files from the ARTFUL distribution
  39.     disks into the \ARTFUL\SRC directory.  This should have been 
  40.     accomplished during the ARTFUL installation.  
  41.  
  42. 3.  Compile each source file in the \ARTFUL\SRC directory using the
  43.     -m -l option.  You may use the ARTFULCL.BAT file to accomplish this.
  44.      Make sure that the resultant object files end up in the \ARTDLB
  45.      directory.  If you run the ARTFULCL.BAT file while in the \ARTDLB
  46.      directory, the object files will be created in the \ARTDLB directory.
  47.  
  48. 4.  Build the ARTFUL.DLB dynamic library by running the ARTDLB.BAT
  49.     file.  This will use the ARTFUL, ARTFUL.SCA and ARTFUL.APP files supplied
  50.     with this distribution to create an "optimized" version of the
  51.     ARTFUL library.
  52.  
  53. 5.  Use the command LIB \ARTDLB\ARTFUL from the DCLIP dot prompt 
  54.     to load the ARTFUL dynamic library.
  55.  
  56. 6.  Use the function LIBLOAD('\ARTDLB\ARTFUL') from your applications
  57.     to load the ARTFUL dynamic library.
  58.