dadb047103
* Add hostfile component for the LLM (reads hostfiles, returns array of node identifiers NOTES: - This will require the full autogen / configure / make. - You now need flex to build Open MPI from Subversion. The versions available on most Linux boxen and OS X is more than new enough. You do *not* need flex to build from a nightly or release tarball. This commit was SVN r1890.
18 строки
402 B
Makefile
18 строки
402 B
Makefile
# -*- makefile -*-
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
AM_CPPFLAGS = -I$(top_srcdir)/test/support -DOMPI_ENABLE_DEBUG_OVERRIDE=1
|
|
|
|
noinst_PROGRAMS = \
|
|
parse_hostfile
|
|
|
|
parse_hostfile_SOURCES = \
|
|
parse_hostfile.c
|
|
parse_hostfile_LDADD = \
|
|
$(top_builddir)/src/libmpi.la \
|
|
$(top_builddir)/test/support/libsupport.la
|
|
parse_hostfile_DEPENDENCIES = $(parse_hostfile_LDADD)
|