Makefile.am 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # StarPU --- Runtime system for heterogeneous multicore architectures.
  2. #
  3. # Copyright (C) 2013, 2014 Centre National de la Recherche Scientifique
  4. #
  5. # Permission is granted to copy, distribute and/or modify this document
  6. # under the terms of the GNU Free Documentation License, Version 1.3
  7. # or any later version published by the Free Software Foundation;
  8. # with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
  9. #
  10. # See the GNU Free Documentation License in COPYING.GFDL for more details.
  11. if BUILD_DOC
  12. SUBDIRS = doxygen
  13. endif
  14. EXTRA_DIST = tutorial/hello_world.c \
  15. tutorial/hello_world_plugin.c \
  16. tutorial/hello_world_msvc.c \
  17. tutorial/Makefile \
  18. tutorial/README \
  19. tutorial/vector_scal.c \
  20. tutorial/vector_scal_cpu.c \
  21. tutorial/vector_scal_cuda.cu \
  22. tutorial/vector_scal_opencl.c \
  23. tutorial/vector_scal_opencl_kernel.cl \
  24. tutorial/vector_scal_plugin.c \
  25. tutorial/vector_scal_plugin_cuda.cu
  26. txtdir = ${docdir}/tutorial
  27. txt_DATA = $(EXTRA_DIST)
  28. showcheck:
  29. for i in $(SUBDIRS) ; do \
  30. make -C $$i showcheck ; \
  31. done