Makefile.am 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # StarPU --- Runtime system for heterogeneous multicore architectures.
  2. #
  3. # Copyright (C) 2020 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
  4. #
  5. # StarPU is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU Lesser General Public License as published by
  7. # the Free Software Foundation; either version 2.1 of the License, or (at
  8. # your option) any later version.
  9. #
  10. # StarPU is distributed in the hope that it will be useful, but
  11. # WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. #
  14. # See the GNU Lesser General Public License in COPYING.LGPL for more details.
  15. #
  16. include $(top_srcdir)/starpu-notests.mk
  17. CLEANFILES = *.gcno *.gcda
  18. AM_CFLAGS = $(GLOBAL_AM_CFLAGS) $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS) $(HWLOC_CFLAGS) $(FXT_CFLAGS) -fPIC
  19. LIBS = $(top_builddir)/src/@LIBSTARPU_LINK@ `@JULIA@ $(top_srcdir)/julia/src/openblas_ldflags.jl`
  20. AM_CPPFLAGS = -I$(top_srcdir)/include/ -I$(top_builddir)/include -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdir)/julia/src
  21. AM_LDFLAGS = $(STARPU_OPENCL_LDFLAGS) $(STARPU_CUDA_LDFLAGS) $(FXT_LDFLAGS) -no-undefined
  22. SUBDIRS = dynamic_compiler
  23. lib_LTLIBRARIES = libstarpujulia-@STARPU_EFFECTIVE_VERSION@.la
  24. noinst_HEADERS =
  25. libstarpujulia_@STARPU_EFFECTIVE_VERSION@_la_LDFLAGS = $(ldflags) -no-undefined \
  26. -version-info $(LIBSTARPUJULIA_INTERFACE_CURRENT):$(LIBSTARPUJULIA_INTERFACE_REVISION):$(LIBSTARPUJULIA_INTERFACE_AGE)
  27. libstarpujulia_@STARPU_EFFECTIVE_VERSION@_la_SOURCES = \
  28. callback_wrapper.c \
  29. blas_wrapper.c \
  30. blas.c
  31. EXTRA_DIST = blas.h \
  32. blas.jl \
  33. data.jl \
  34. destructible.jl \
  35. globals.jl \
  36. init.jl \
  37. linked_list.jl \
  38. perfmodel.jl \
  39. StarPU.jl \
  40. task_dep.jl \
  41. task.jl \
  42. translate_headers.jl \
  43. utils.jl \
  44. compiler/c.jl \
  45. compiler/cuda.jl \
  46. compiler/expression_manipulation.jl \
  47. compiler/expressions.jl \
  48. compiler/file_generation.jl \
  49. compiler/include.jl \
  50. compiler/parsing.jl \
  51. compiler/utils.jl