Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ompi/debuggers/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2007-2015 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2015 Intel, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
Expand Down Expand Up @@ -43,13 +44,14 @@ headers = \
# Simple checks to ensure that the DSOs are functional

dlopen_test_SOURCES = dlopen_test.c
dlopen_test_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
dlopen_test_LDADD = \
$(top_builddir)/ompi/libmpi.la \
$(top_builddir)/opal/libopen-pal.la
dlopen_test_DEPENDENCIES = $(ompi_predefined_LDADD)

predefined_gap_test_SOURCES = predefined_gap_test.c
predefined_gap_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
predefined_gap_test_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
predefined_gap_test_LDADD = $(top_builddir)/ompi/libmpi.la
predefined_gap_test_DEPENDENCIES = $(ompi_predefined_LDADD)

Expand Down
17 changes: 9 additions & 8 deletions test/datatype/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# reserved.
# Copyright (c) 2006-2015 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
# Copyright (c) 2015 Intel, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
Expand All @@ -20,46 +21,46 @@ TESTS = opal_datatype_test $(MPI_TESTS)
check_PROGRAMS = $(TESTS) $(MPI_CHECKS)

ddt_test_SOURCES = ddt_test.c ddt_lib.c ddt_lib.h
ddt_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
ddt_test_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
ddt_test_LDADD = \
$(top_builddir)/ompi/libmpi.la \
$(top_builddir)/opal/libopen-pal.la

ddt_raw_SOURCES = ddt_raw.c ddt_lib.c ddt_lib.h
ddt_raw_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
ddt_raw_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
ddt_raw_LDADD = \
$(top_builddir)/ompi/libmpi.la \
$(top_builddir)/opal/libopen-pal.la

ddt_pack_SOURCES = ddt_pack.c
ddt_pack_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
ddt_pack_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
ddt_pack_LDADD = \
$(top_builddir)/ompi/libmpi.la \
$(top_builddir)/opal/libopen-pal.la

checksum_SOURCES = checksum.c
checksum_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
checksum_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
checksum_LDADD = \
$(top_builddir)/ompi/libmpi.la \
$(top_builddir)/opal/libopen-pal.la

position_SOURCES = position.c
position_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
position_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
position_LDADD = \
$(top_builddir)/ompi/libmpi.la \
$(top_builddir)/opal/libopen-pal.la

position_noncontig_SOURCES = position_noncontig.c
position_noncontig_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
position_noncontig_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
position_noncontig_LDADD = \
$(top_builddir)/ompi/libmpi.la \
$(top_builddir)/opal/libopen-pal.la

to_self_SOURCES = to_self.c
to_self_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
to_self_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
to_self_LDADD = $(top_builddir)/ompi/libmpi.la

opal_datatype_test_SOURCES = opal_datatype_test.c opal_ddt_lib.c opal_ddt_lib.h
opal_datatype_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
opal_datatype_test_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
opal_datatype_test_LDADD = $(top_builddir)/opal/libopen-pal.la

7 changes: 4 additions & 3 deletions test/event/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2015 Intel, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
Expand All @@ -26,19 +27,19 @@ check_PROGRAMS = \
TESTS = $(check_PROGRAMS)

signal_test_SOURCES = signal-test.c
signal_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
signal_test_LDFLAGS = $(OPAL_WRAPPER_EXTRA_LDFLAGS)
signal_test_LDADD = \
$(top_builddir)/opal/libopen-pal.la
signal_test_DEPENDENCIES = $(signal_test_LDADD)

time_test_SOURCES = time-test.c
time_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
time_test_LDFLAGS = $(OPAL_WRAPPER_EXTRA_LDFLAGS)
time_test_LDADD = \
$(top_builddir)/opal/libopen-pal.la
time_test_DEPENDENCIES = $(time_test_LDADD)

event_test_SOURCES = event-test.c
event_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
event_test_LDFLAGS = $(OPAL_WRAPPER_EXTRA_LDFLAGS)
event_test_LDADD = \
$(top_builddir)/opal/libopen-pal.la
event_test_DEPENDENCIES = $(event_test_LDADD)