1
1

* fix make dist for the atomic code

This commit was SVN r4188.
Этот коммит содержится в:
Brian Barrett 2005-01-27 16:49:47 +00:00
родитель 9dee6d8c03
Коммит 80967bec8d
3 изменённых файлов: 29 добавлений и 2 удалений

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

@ -1381,6 +1381,7 @@ AC_CONFIG_FILES([
src/include/sys/ia64/Makefile
src/include/sys/powerpc/Makefile
src/include/sys/sparc64/Makefile
src/include/sys/win32/Makefile
src/class/Makefile
src/runtime/Makefile

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

@ -14,9 +14,9 @@
include $(top_srcdir)/config/Makefile.options
SUBDIRS = alpha amd64 ia32 ia64 powerpc sparc64
SUBDIRS = alpha amd64 ia32 ia64 powerpc sparc64 win32
noinst_HEADERS = atomic.h cache.h
noinst_HEADERS = atomic.h architecture.h atomic_impl.h
# Conditionally install the header files

26
src/include/sys/win32/Makefile.am Обычный файл
Просмотреть файл

@ -0,0 +1,26 @@
#
# 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$
#
# Additional copyrights may follow
#
# $HEADER$
#
include $(top_srcdir)/config/Makefile.options
noinst_HEADERS = atomic.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include/sys/win32
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif