geom_gate userland utility improvements
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

66 lines
2.0 KiB

  1. # $Id: Makefile.am,v 1.21 2009/05/07 17:21:56 bagder Exp $
  2. AUTOMAKE_OPTIONS = foreign nostdinc
  3. # Get the CRYPTO_CSOURCES, CRYPTO_HHEADERS and CRYPTO_LTLIBS defines
  4. if OPENSSL
  5. include ../Makefile.OpenSSL.inc
  6. endif
  7. if LIBGCRYPT
  8. include ../Makefile.libgcrypt.inc
  9. endif
  10. if WINCNG
  11. include ../Makefile.WinCNG.inc
  12. endif
  13. if MBEDTLS
  14. include ../Makefile.mbedTLS.inc
  15. endif
  16. # Makefile.inc provides the CSOURCES and HHEADERS defines
  17. include ../Makefile.inc
  18. libssh2_la_SOURCES = $(CSOURCES) $(HHEADERS)
  19. EXTRA_DIST = libssh2_config.h.in libssh2_config_cmake.h.in libssh2.pc.in
  20. EXTRA_DIST += CMakeLists.txt NMakefile
  21. lib_LTLIBRARIES = libssh2.la
  22. # srcdir/include for the shipped headers
  23. # builddir/src for the generated config header when building out of the source
  24. # tree
  25. AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/src
  26. VERSION=-version-info 1:1:0
  27. # This flag accepts an argument of the form current[:revision[:age]]. So,
  28. # passing -version-info 3:12:1 sets current to 3, revision to 12, and age to
  29. # 1.
  30. #
  31. # If either revision or age are omitted, they default to 0. Also note that age
  32. # must be less than or equal to the current interface number.
  33. #
  34. # Here are a set of rules to help you update your library version information:
  35. #
  36. # 1.Start with version information of 0:0:0 for each libtool library.
  37. #
  38. # 2.Update the version information only immediately before a public release of
  39. # your software. More frequent updates are unnecessary, and only guarantee
  40. # that the current interface number gets larger faster.
  41. #
  42. # 3.If the library source code has changed at all since the last update, then
  43. # increment revision (c:r+1:a)
  44. #
  45. # 4.If any interfaces have been added, removed, or changed since the last
  46. # update, increment current, and set revision to 0. (c+1:r=0:a)
  47. #
  48. # 5.If any interfaces have been added since the last public release, then
  49. # increment age. (c:r:a+1)
  50. #
  51. # 6.If any interfaces have been removed since the last public release, then
  52. # set age to 0. (c:r:a=0)
  53. #
  54. libssh2_la_LDFLAGS = $(VERSION) -no-undefined \
  55. -export-symbols-regex '^libssh2_.*' \
  56. $(CRYPTO_LTLIBS) $(LTLIBZ)