README.git 591 B

12345678910111213141516171819202122232425
  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. - gettext
  10. Then you have to let the autotools create all the autogenerated files, using
  11. this command:
  12. autoreconf -fsi
  13. If you change configure.in or any Makefile.am file, you will have to rerun
  14. autoreconf. After this, you can run configure and make as usual. To create a
  15. tarball suitable for release, run:
  16. make dist
  17. To clean up your working copy so that no autogenerated files remain, run:
  18. git clean -f