1
1
openmpi/test/event/Makefile.am
Jeff Squyres ea935df632 test Makefile.am: fix flags
WRAPPER_EXTRA_LDFLAGS is both no longer used, and even if we fixed to
use the new names (i.e., <PACKAGE>_WRAPPER_EXTRA_LDFLAGS), it contains
a token that will not be understandable in Makefile.ams: @{libdir}.

Hence, update all instances to use <PACKAGE>_PKG_CONFIG_LDFLAGS, which
does not contain the @{libdir} token.  See comment in
opal_setup_wrappers.m4 for an explanation.
2015-08-25 14:04:51 -07:00

46 строки
1.4 KiB
Makefile

#
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
# University Research and Technology
# Corporation. All rights reserved.
# Copyright (c) 2004-2005 The University of Tennessee and The University
# of Tennessee Research Foundation. All rights
# reserved.
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
check_PROGRAMS = \
signal-test \
time-test \
event-test
TESTS = $(check_PROGRAMS)
signal_test_SOURCES = signal-test.c
signal_test_LDFLAGS = $(OPAL_PKG_CONFIG_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 = $(OPAL_PKG_CONFIG_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 = $(OPAL_PKG_CONFIG_LDFLAGS)
event_test_LDADD = \
$(top_builddir)/opal/libopen-pal.la
event_test_DEPENDENCIES = $(event_test_LDADD)