2006-06-26 22:28:59 +00:00
|
|
|
#
|
|
|
|
# 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.
|
2015-06-23 20:59:57 -07:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2006-06-26 22:28:59 +00:00
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2016-02-23 16:22:59 -08:00
|
|
|
# Copyright (c) 2015-2016 Cisco Systems, Inc. All rights reserved.
|
2006-06-26 22:28:59 +00:00
|
|
|
# $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
#
|
2006-06-26 22:28:59 +00:00
|
|
|
# Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
#
|
2006-06-26 22:28:59 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
check_PROGRAMS = \
|
|
|
|
signal-test \
|
|
|
|
time-test \
|
|
|
|
event-test
|
|
|
|
|
|
|
|
TESTS = $(check_PROGRAMS)
|
|
|
|
|
|
|
|
signal_test_SOURCES = signal-test.c
|
2015-08-25 14:04:51 -07:00
|
|
|
signal_test_LDFLAGS = $(OPAL_PKG_CONFIG_LDFLAGS)
|
2006-06-26 22:28:59 +00:00
|
|
|
signal_test_LDADD = \
|
2016-02-23 16:22:59 -08:00
|
|
|
$(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la
|
2006-06-26 22:28:59 +00:00
|
|
|
signal_test_DEPENDENCIES = $(signal_test_LDADD)
|
|
|
|
|
|
|
|
time_test_SOURCES = time-test.c
|
2015-08-25 14:04:51 -07:00
|
|
|
time_test_LDFLAGS = $(OPAL_PKG_CONFIG_LDFLAGS)
|
2006-06-26 22:28:59 +00:00
|
|
|
time_test_LDADD = \
|
2016-02-23 16:22:59 -08:00
|
|
|
$(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la
|
2006-06-26 22:28:59 +00:00
|
|
|
time_test_DEPENDENCIES = $(time_test_LDADD)
|
|
|
|
|
|
|
|
event_test_SOURCES = event-test.c
|
2015-08-25 14:04:51 -07:00
|
|
|
event_test_LDFLAGS = $(OPAL_PKG_CONFIG_LDFLAGS)
|
2006-06-26 22:28:59 +00:00
|
|
|
event_test_LDADD = \
|
2016-02-23 16:22:59 -08:00
|
|
|
$(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la
|
2006-06-26 22:28:59 +00:00
|
|
|
event_test_DEPENDENCIES = $(event_test_LDADD)
|
2015-11-24 19:55:10 -08:00
|
|
|
|
|
|
|
distclean:
|
|
|
|
rm -rf *.dSYM .deps .libs *.log *.o *.trs $(check_PROGRAMS) Makefile
|