Makefile.am 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # StarPURM --- Resource Management Layer.
  2. #
  3. # Copyright (C) 2017, 2018 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. SUBDIRS =
  16. CLEANFILES = *.gcno *.gcda *.linkinfo
  17. AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src -I$(top_builddir)/src -I$(top_builddir)/include
  18. AM_CPPFLAGS += -I$(top_srcdir)/starpurm/include -I$(top_srcdir)/starpurm/src -I$(top_builddir)/starpurm/src -I$(top_builddir)/starpurm/include
  19. AM_CFLAGS = -Wall -g $(HWLOC_CFLAGS) $(DLB_CFLAGS)
  20. LDADD = $(top_builddir)/starpurm/src/libstarpurm-@STARPU_EFFECTIVE_VERSION@.la $(HWLOC_LIBS) $(DLB_LIBS)
  21. examplebindir = $(libdir)/starpu/examples/starpurm
  22. examplebin_PROGRAMS =
  23. examplebin_PROGRAMS += 01_init_exit
  24. examplebin_PROGRAMS += 02_list_units
  25. examplebin_PROGRAMS += 03_cpusets
  26. examplebin_PROGRAMS += 04_drs_enable
  27. examplebin_PROGRAMS += 05_vector_scale
  28. examplebin_PROGRAMS += 06_spawn
  29. examplebin_PROGRAMS += 07_async_spawn
  30. 01_init_exit_SOURCES = 01_init_exit.c
  31. 02_list_units_SOURCES = 02_list_units.c
  32. 03_cpusets_SOURCES = 03_cpusets.c
  33. 04_drs_enable_SOURCES = 04_drs_enable.c
  34. 05_vector_scale_SOURCES = 05_vector_scale.c
  35. 06_spawn_SOURCES = 06_spawn.c
  36. 07_async_spawn_SOURCES = 07_async_spawn.c