Makefrag.am 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Plugins for offload execution, Makefile.am fragment.
  2. #
  3. # Copyright (C) 2014-2015 Free Software Foundation, Inc.
  4. #
  5. # Contributed by Mentor Embedded.
  6. #
  7. # This file is part of the GNU Offloading and Multi Processing Library
  8. # (libgomp).
  9. #
  10. # Libgomp is free software; you can redistribute it and/or modify it
  11. # under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; either version 3, or (at your option)
  13. # any later version.
  14. #
  15. # Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
  16. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  17. # FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  18. # more details.
  19. #
  20. # Under Section 7 of GPL version 3, you are granted additional
  21. # permissions described in the GCC Runtime Library Exception, version
  22. # 3.1, as published by the Free Software Foundation.
  23. #
  24. # You should have received a copy of the GNU General Public License and
  25. # a copy of the GCC Runtime Library Exception along with this program;
  26. # see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  27. # <http://www.gnu.org/licenses/>.
  28. if PLUGIN_NVPTX
  29. # Nvidia PTX OpenACC plugin.
  30. libgomp_plugin_nvptx_version_info = -version-info $(libtool_VERSION)
  31. toolexeclib_LTLIBRARIES += libgomp-plugin-nvptx.la
  32. libgomp_plugin_nvptx_la_SOURCES = plugin/plugin-nvptx.c
  33. libgomp_plugin_nvptx_la_CPPFLAGS = $(AM_CPPFLAGS) $(PLUGIN_NVPTX_CPPFLAGS)
  34. libgomp_plugin_nvptx_la_LDFLAGS = $(libgomp_plugin_nvptx_version_info) \
  35. $(lt_host_flags)
  36. libgomp_plugin_nvptx_la_LDFLAGS += $(PLUGIN_NVPTX_LDFLAGS)
  37. libgomp_plugin_nvptx_la_LIBADD = libgomp.la $(PLUGIN_NVPTX_LIBS)
  38. libgomp_plugin_nvptx_la_LIBTOOLFLAGS = --tag=disable-static
  39. endif
  40. libgomp_plugin_host_nonshm_version_info = -version-info $(libtool_VERSION)
  41. toolexeclib_LTLIBRARIES += libgomp-plugin-host_nonshm.la
  42. libgomp_plugin_host_nonshm_la_SOURCES = plugin/plugin-host.c
  43. libgomp_plugin_host_nonshm_la_CPPFLAGS = $(AM_CPPFLAGS) -DHOST_NONSHM_PLUGIN
  44. libgomp_plugin_host_nonshm_la_LDFLAGS = \
  45. $(libgomp_plugin_host_nonshm_version_info) $(lt_host_flags)
  46. libgomp_plugin_host_nonshm_la_LIBADD = libgomp.la
  47. libgomp_plugin_host_nonshm_la_LIBTOOLFLAGS = --tag=disable-static