File: Makefile.inc.am

package info (click to toggle)
otf2 3.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 29,000 kB
  • sloc: ansic: 92,997; python: 16,977; cpp: 9,057; sh: 6,299; makefile: 238; awk: 54
file content (63 lines) | stat: -rw-r--r-- 1,885 bytes parent folder | download | duplicates (3)
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
## -*- mode: makefile -*-

##
## This file is part of the Score-P software (http://www.score-p.org)
##
## Copyright (c) 2009-2011,
## RWTH Aachen University, Germany
##
## Copyright (c) 2009-2011,
## Gesellschaft fuer numerische Simulation mbH Braunschweig, Germany
##
## Copyright (c) 2009-2011, 2013,
## Technische Universitaet Dresden, Germany
##
## Copyright (c) 2009-2011,
## University of Oregon, Eugene, USA
##
## Copyright (c) 2009-2011, 2014, 2018,
## Forschungszentrum Juelich GmbH, Germany
##
## Copyright (c) 2009-2011,
## German Research School for Simulation Sciences GmbH, Juelich/Aachen, Germany
##
## Copyright (c) 2009-2011,
## Technische Universitaet Muenchen, 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.
##

## file       test/OTF2_Timer_sync_test/Makefile.inc.am

check_PROGRAMS               += OTF2_Timer_sync_test
OTF2_Timer_sync_test_SOURCES  = $(SRC_ROOT)test/OTF2_Timer_sync_test/OTF2_Timer_sync_test.c
OTF2_Timer_sync_test_CPPFLAGS = \
    $(AM_CPPFLAGS) \
    -I$(INC_ROOT)test/include \
    $(UTILS_CPPFLAGS)
OTF2_Timer_sync_test_LDADD    = $(LIB_ROOT)libotf2.la

OTF2_Timer_sync_test_CFLAGS = $(AM_CFLAGS)
OTF2_Timer_sync_test_LDFLAGS = $(AM_LDFLAGS) $(LINKMODE_FLAGS)
if HAVE_PTHREAD
OTF2_Timer_sync_test_CFLAGS += \
    $(PTHREAD_CFLAGS)
OTF2_Timer_sync_test_LDFLAGS += \
    $(PTHREAD_CFLAGS)
OTF2_Timer_sync_test_LDADD += \
    $(PTHREAD_LIBS)
endif

SCOREP_TESTS += \
    $(SRC_ROOT)test/OTF2_Timer_sync_test/run_otf2_timer_sync_test.sh

if HAVE_SIONLIB_SUPPORT
SCOREP_TESTS += \
    $(SRC_ROOT)test/OTF2_Timer_sync_test/run_otf2_timer_sync_test_sion.sh
endif

EXTRA_DIST += \
    $(SRC_ROOT)test/OTF2_Timer_sync_test/run_otf2_timer_sync_test.sh \
    $(SRC_ROOT)test/OTF2_Timer_sync_test/run_otf2_timer_sync_test_sion.sh