1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
##
## This file is part of the Score-P software (http://www.score-p.org)
##
## Copyright (c) 2013,
## Technische Universitaet Dresden, Germany
##
## Copyright (c) 2014, 2018,
## Forschungszentrum Juelich GmbH, Germany
##
## This software may be modified and distributed under the terms of
## a BSD-style license. See the COPYING file in the package base
## directory for details.
##
if HAVE_PTHREAD_BARRIER
check_PROGRAMS += test-writer
test_writer_SOURCES = \
$(SRC_ROOT)test/test-parallel/test-writer.c
test_writer_CFLAGS = \
$(AM_CPPFLAGS) \
-I$(INC_ROOT)test/cti \
-I$(INC_ROOT)test/otf2-cti \
-I$(INC_ROOT)test/include \
$(PTHREAD_CFLAGS)
test_writer_LDFLAGS = \
$(AM_LDFLAGS) \
$(LINKMODE_FLAGS) \
$(PTHREAD_CFLAGS)
test_writer_LDADD = \
libotf2-cti.la \
libotf2.la \
libcti.la
check_PROGRAMS += test-reader
test_reader_SOURCES = \
$(SRC_ROOT)test/test-parallel/test-reader.c
test_reader_CFLAGS = \
$(AM_CPPFLAGS) \
-I$(INC_ROOT)test/cti \
-I$(INC_ROOT)test/otf2-cti \
-I$(INC_ROOT)test/include \
$(PTHREAD_CFLAGS)
test_reader_LDFLAGS = \
$(AM_LDFLAGS) \
$(LINKMODE_FLAGS) \
$(PTHREAD_CFLAGS)
test_reader_LDADD = \
libotf2-cti.la \
libotf2.la \
libcti.la
SCOREP_TESTS += \
$(SRC_ROOT)test/test-parallel/run_otf2_parallel_posix.sh
if HAVE_SIONLIB_SUPPORT
SCOREP_TESTS += \
$(SRC_ROOT)test/test-parallel/run_otf2_parallel_sion.sh
endif
endif HAVE_PTHREAD_BARRIER
EXTRA_DIST += \
$(SRC_ROOT)test/test-parallel/run_otf2_parallel_posix.sh \
$(SRC_ROOT)test/test-parallel/run_otf2_parallel_sion.sh
|