home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / RTEXP142.ZIP / RTEXP142.EXE / INSTALL.TXT < prev    next >
Text File  |  1994-03-30  |  2KB  |  53 lines

  1.  
  2. To Install RT-Expert:
  3. --------------------
  4.  
  5. [This assumes that you receive one .zip file - if you receive RT-Expert any
  6.  other way, most of these instructions should still apply, but the initial
  7.  ones about how to extract the archive may not.]
  8.  
  9. 1) Make a directory where you wish to install RT-Expert.  (Note: the
  10. makefiles provided for the examples assume that the directory is called
  11. '\RTEXPERT'):
  12.  
  13.   C:\> mkdir rtexpert
  14.  
  15. 2) Un-zip the RT-Expert archive into this directory - make sure to use
  16. the option for extracting directories! (for PKUNZIP, the option is
  17. '-d'):
  18.  
  19.   C:\> cd rtexpert
  20.   C:\RTEXPERT> pkunzip -d c:\dnloads\rtexpert.zip
  21.       .
  22.       .
  23.       .
  24.  
  25. 3) Add this directory to your path in your AUTOEXEC.BAT file.
  26.  
  27. 4) See the file 'READ.ME' for up-to-date information and for a
  28. description of included files.
  29.  
  30. 5) To compile the examples:
  31.  
  32.     a) Change to the directory where the example is:
  33.  
  34.       C:\> cd rtexpert\examples\tuorial
  35.  
  36.     b) Copy the makefile for your compiler to the file 'makefile'
  37.     ('makefile.bc' is for Borland C++ 3.1, 'makefile.mc' is for
  38.     Microsoft C/C++ 7.0, and 'makefile.tc' is for Turbo C++ 3.0)
  39.  
  40.       C:\REXPERT\EXAMPLES\TUTORIAL> copy makefile.bc makefile
  41.               1 file(s) copied
  42.  
  43.     c) Update the makefile to reflect where you installed RT-Expert.
  44.  
  45.     d) Type 'make' (or 'nmake' for Microsoft)
  46.  
  47.       C:\RTEXPERT\EXAMPLES\TUTORIAL> make
  48.  
  49.     e) Run the example!
  50.  
  51.       C:\RTEXPERT\EXAMPLES\TUTORIAL> my_main
  52.  
  53.