INSTALL 566 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. INSTALLATION INSTRUCTIONS
  2. -------------------------
  3. ----
  4. To install, do:
  5. ./configure
  6. make
  7. make install
  8. ----
  9. To install to a custom directory, do:
  10. ./configure --prefix=<custom_dir>
  11. make
  12. make install
  13. ----
  14. To uninstall, do:
  15. make uninstall
  16. ----
  17. For a clean re-installation, do:
  18. make distclean
  19. ./configure
  20. make
  21. make install
  22. ----
  23. NOTES: * The RCS software is required; you'll get errors if it is missing.
  24. * If RCS is installed to a non-standard locaton, modify rvi.cc.
  25. * Restricted vi is also known as rvi, adjust PATH or aliases as needed.
  26. ----