Makefile.am 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 += -fPIC
  19. AM_CPPFLAGS = -I$(top_srcdir)/include/ -I$(top_builddir)/include -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdir)/julia/src $(STARPU_H_CPPFLAGS)
  20. LIBS += $(top_builddir)/src/@LIBSTARPU_LINK@ `@JULIA@ $(top_srcdir)/julia/src/openblas_ldflags.jl` $(STARPU_EXPORTED_LIBS)
  21. SUBDIRS = dynamic_compiler
  22. lib_LTLIBRARIES = libstarpujulia-@STARPU_EFFECTIVE_VERSION@.la
  23. noinst_HEADERS =
  24. libstarpujulia_@STARPU_EFFECTIVE_VERSION@_la_LDFLAGS = $(ldflags) -no-undefined \
  25. -version-info $(LIBSTARPUJULIA_INTERFACE_CURRENT):$(LIBSTARPUJULIA_INTERFACE_REVISION):$(LIBSTARPUJULIA_INTERFACE_AGE)
  26. libstarpujulia_@STARPU_EFFECTIVE_VERSION@_la_SOURCES = \
  27. callback_wrapper.c \
  28. blas_wrapper.c \
  29. blas.c
  30. EXTRA_DIST = blas.h \
  31. blas.jl \
  32. data.jl \
  33. destructible.jl \
  34. globals.jl \
  35. init.jl \
  36. linked_list.jl \
  37. perfmodel.jl \
  38. StarPU.jl \
  39. task_dep.jl \
  40. task.jl \
  41. translate_headers.jl \
  42. utils.jl \
  43. compiler/c.jl \
  44. compiler/cuda.jl \
  45. compiler/expression_manipulation.jl \
  46. compiler/expressions.jl \
  47. compiler/file_generation.jl \
  48. compiler/include.jl \
  49. compiler/parsing.jl \
  50. compiler/utils.jl