there was an #include directive missing
[openmpi-llc.git] / test / threads / Makefile.am
blobca1b6e6a3dc47dea533aeaecdece8530d847c404
1 # -*- makefile -*-
3 # Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
4 #                         University Research and Technology
5 #                         Corporation.  All rights reserved.
6 # Copyright (c) 2004-2005 The University of Tennessee and The University
7 #                         of Tennessee Research Foundation.  All rights
8 #                         reserved.
9 # Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, 
10 #                         University of Stuttgart.  All rights reserved.
11 # Copyright (c) 2004-2005 The Regents of the University of California.
12 #                         All rights reserved.
13 # $COPYRIGHT$
14
15 # Additional copyrights may follow
16
17 # $HEADER$
20 AM_CPPFLAGS = -I$(top_srcdir)/test/support
22 AM_LDFLAGS = -lpthread
24 check_PROGRAMS = \
25         opal_thread \
26         opal_condition
28 TESTS = \
29         $(check_PROGRAMS)
31 opal_thread_SOURCES = opal_thread.c
32 opal_thread_LDADD = \
33         $(top_builddir)/test/support/libsupport.a \
34         $(top_builddir)/opal/libopal.la
35 opal_thread_DEPENDENCIES = $(opal_thread_LDADD)
37 opal_condition_SOURCES = opal_condition.c
38 opal_condition_LDADD = \
39         $(top_builddir)/test/support/libsupport.a \
40         $(top_builddir)/opal/libopal.la
41 opal_condition_DEPENDENCIES = $(opal_condition_LDADD)