1# -*- makefile -*-
2#
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-2007 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 (c) 2014 Cisco Systems, Inc.  All rights reserved.
14# Copyright (c) 2014-2018 Los Alamos National Security, LLC. All rights
15#                         reserved.
16# $COPYRIGHT$
17#
18# Additional copyrights may follow
19#
20# $HEADER$
21#
22
23# This makefile.am does not stand on its own - it is included from
24# opal/Makefile.am
25
26# Source code files
27headers += \
28        class/opal_bitmap.h \
29        class/opal_free_list.h \
30        class/opal_hash_table.h \
31        class/opal_hotel.h \
32        class/opal_tree.h \
33        class/opal_list.h \
34        class/opal_object.h \
35        class/opal_graph.h\
36        class/opal_lifo.h \
37        class/opal_fifo.h \
38        class/opal_pointer_array.h \
39        class/opal_value_array.h \
40        class/opal_ring_buffer.h \
41        class/opal_rb_tree.h \
42        class/opal_interval_tree.h
43
44lib@OPAL_LIB_PREFIX@open_pal_la_SOURCES += \
45        class/opal_bitmap.c \
46        class/opal_free_list.c \
47        class/opal_hash_table.c \
48        class/opal_hotel.c \
49        class/opal_tree.c \
50        class/opal_list.c \
51        class/opal_object.c \
52        class/opal_graph.c\
53        class/opal_lifo.c \
54        class/opal_fifo.c \
55        class/opal_pointer_array.c \
56        class/opal_value_array.c \
57        class/opal_ring_buffer.c \
58        class/opal_rb_tree.c \
59        class/opal_interval_tree.c
60