1
1
openmpi/orte/class/Makefile.am
Jeff Squyres 74744dd9df Fix a holdover mistake from the directory re-org:
- orte/class/ompi_proc_table.[ch] -> orte/class/orte_proc_table.[ch]
- opal_hash_table_[get|set|remove]_proc -> 
  orte_hash_table_[get|set|remove]_proc

This commit was SVN r6549.
2005-07-19 12:25:19 +00:00

45 строки
1.1 KiB
Makefile

# -*- makefile -*-
#
# Copyright (c) 2004-2005 The Trustees of Indiana University.
# All rights reserved.
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
# 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$
#
# Additional copyrights may follow
#
# $HEADER$
#
include $(top_srcdir)/config/Makefile.options
noinst_LTLIBRARIES = libclass.la
# Source code files
headers = \
orte_proc_table.h \
orte_bitmap.h \
orte_pointer_array.h \
orte_value_array.h
libclass_la_SOURCES = \
$(headers) \
orte_proc_table.c \
orte_bitmap.c \
orte_pointer_array.c \
orte_value_array.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/class
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif