1# -*- Mode: c-basic-offset:4 ; indent-tabs-mode:nil ; -*-
2#
3#  (C) 2008 by Argonne National Laboratory.
4#      See COPYRIGHT in top-level directory.
5
6TESTS = sanity test_primitives test_barriers test_queue
7
8check_PROGRAMS = $(TESTS)
9
10AM_LDFLAGS = -L../src
11LDADD = -lopa
12DEPENDENCIES = libopa.la
13
14sanity_SOURCES = sanity.c
15test_primitives_SOURCES = test_primitives.c opa_test.h
16test_barriers_SOURCES = test_barriers.c opa_test.h
17test_queue_SOURCES = test_queue.c opa_test.h
18
19AM_CPPFLAGS = -I$(top_srcdir)/src
20