README.DEVELOPER 598 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # How to get started developing
  2. @(#) $File: README.DEVELOPER,v 1.4 2014/03/10 12:35:59 kim Exp $
  3. ## Auto files
  4. After checking out the source, run the following:
  5. autoreconf -f -i
  6. ./configure --disable-silent-rules
  7. make -j4
  8. make -C tests check
  9. ## Installing dependencies
  10. If your platform doesn't have the above tools, install the following
  11. packages first.
  12. ### Debian
  13. apt-get install \
  14. automake \
  15. gcc \
  16. libtool \
  17. make \
  18. python \
  19. zlib1g-dev \
  20. See also `.travis.yml`.
  21. ### Mac OS X (MacPorts)
  22. port install \
  23. autoconf \
  24. automake \
  25. libtool \