STARPU-VERSION 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # -*- sh -*-
  2. # Versioning (SONAMEs) for StarPU libraries.
  3. # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html#Updating-version-info
  4. # Here are a set of rules to help you update your library version information:
  5. # Start with version information of ‘0:0:0’ for each libtool library.
  6. # Update the version information only immediately before a public
  7. # release of your software. More frequent updates are unnecessary, and
  8. # only guarantee that the current interface number gets larger faster.
  9. # - If the library source code has changed at all since the last
  10. # update, then increment revision (‘c:r:a’ becomes ‘c:r+1:a’).
  11. # - If any interfaces have been added, removed, or changed since the
  12. # last update, increment current, and set revision to 0.
  13. # - If any interfaces have been added since the last public release,
  14. # then increment age.
  15. # - If any interfaces have been removed or changed since the last
  16. # public release, then set age to 0. change
  17. # Libtool interface versioning (info "(libtool) Versioning").
  18. LIBSTARPU_INTERFACE_CURRENT=1 # increment upon ABI change
  19. LIBSTARPU_INTERFACE_REVISION=0 # increment upon implementation change
  20. LIBSTARPU_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface
  21. STARPU_EFFECTIVE_VERSION=1.0
  22. LIBSTARPUFFT_INTERFACE_CURRENT=1 # increment upon ABI change
  23. LIBSTARPUFFT_INTERFACE_REVISION=0 # increment upon implementation change
  24. LIBSTARPUFFT_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface
  25. LIBSTARPUMPI_INTERFACE_CURRENT=1 # increment upon ABI change
  26. LIBSTARPUMPI_INTERFACE_REVISION=0 # increment upon implementation change
  27. LIBSTARPUMPI_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface
  28. LIBSOCL_INTERFACE_CURRENT=1 # increment upon ABI change
  29. LIBSOCL_INTERFACE_REVISION=0 # increment upon implementation change
  30. LIBSOCL_INTERFACE_AGE=0 # set to CURRENT - PREVIOUS interface