README.git 614 B

1234567891011121314151617181920212223242526
  1. Before you can start compiling tinc from a fresh git clone, you have
  2. to install the very latest versions of the following packages:
  3. - OpenSSL
  4. - zlib
  5. - lzo
  6. - GCC
  7. - automake
  8. - autoconf
  9. - ncurses or PDCurses
  10. - readline
  11. Then you have to let the autotools create all the autogenerated files, using
  12. this command:
  13. autoreconf -fsi
  14. If you change configure.in or any Makefile.am file, you will have to rerun
  15. autoreconf. After this, you can run configure and make as usual. To create a
  16. tarball suitable for release, run:
  17. make dist
  18. To clean up your working copy so that no autogenerated files remain, run:
  19. git clean -f