2004-03-17 02:34:41 +03:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
noinst_LTLIBRARIES = libwin.la
|
2004-03-17 02:34:41 +03:00
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
win.h
|
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
libwin_la_SOURCES = \
|
2004-03-17 02:34:41 +03:00
|
|
|
$(headers) \
|
|
|
|
win.c
|
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2004-06-17 22:21:08 +04:00
|
|
|
ompidir = $(includedir)/openmpi/win
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_HEADERS = $(headers)
|
2004-03-17 02:34:41 +03:00
|
|
|
else
|
2004-06-07 19:33:53 +04:00
|
|
|
ompidir = $(includedir)
|
2004-03-17 02:34:41 +03:00
|
|
|
endif
|