1
1

Ensure that the headers get installed (if selected).

This commit was SVN r1565.
Этот коммит содержится в:
Jeff Squyres 2004-07-07 12:42:42 +00:00
родитель f59a3e91d5
Коммит fae7333bca

Просмотреть файл

@ -1,13 +1,21 @@
# -*- makefile -*-
# #
# $HEADER$ # $HEADER$
# #
include $(top_srcdir)/config/Makefile.options include $(top_srcdir)/config/Makefile.options
include_HEADERS = \ headers = \
atomic.h \ atomic.h \
constants.h \ constants.h \
ompi.h \ ompi.h \
totalview.h \ totalview.h \
types.h types.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif