|
Revision 4898, 1.3 KB
(checked in by kumudb, 5 months ago)
|
|
executable works except mpiexec
|
| Line | |
|---|
| 1 | # -*- Mode: Makefile; -*- |
|---|
| 2 | # |
|---|
| 3 | # (C) 2008 by Argonne National Laboratory. |
|---|
| 4 | # See COPYRIGHT in top-level directory. |
|---|
| 5 | # |
|---|
| 6 | |
|---|
| 7 | SUBDIRS = mpl . |
|---|
| 8 | |
|---|
| 9 | ACLOCAL_AMFLAGS = -I mpl/confdb |
|---|
| 10 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/mpl/include \ |
|---|
| 11 | -I$(top_builddir)/mpl/include \ |
|---|
| 12 | -I$(top_srcdir)/bootstrap/include -I$(top_builddir)/bootstrap/include \ |
|---|
| 13 | -I$(top_srcdir)/bootstrap/utils \ |
|---|
| 14 | -I$(top_srcdir)/rmk/include -I$(top_builddir)/rmk/include -I$(top_srcdir)/rmk/utils \ |
|---|
| 15 | -I$(top_srcdir)/css/include -I$(top_builddir)/css/include -I$(top_srcdir)/css/utils \ |
|---|
| 16 | -I$(top_srcdir)/demux -I$(top_srcdir)/pm/include -I$(top_srcdir)/utils/plpa |
|---|
| 17 | |
|---|
| 18 | noinst_LIBRARIES = libhydra.a libpm.a libui.a |
|---|
| 19 | bin_PROGRAMS = |
|---|
| 20 | libhydra_a_SOURCES = |
|---|
| 21 | libpm_a_SOURCES = |
|---|
| 22 | libui_a_SOURCES = |
|---|
| 23 | |
|---|
| 24 | # The below directories contribute to libhydra.a |
|---|
| 25 | include utils/Makefile.mk |
|---|
| 26 | include rmk/Makefile.mk |
|---|
| 27 | include bootstrap/Makefile.mk |
|---|
| 28 | include css/Makefile.mk |
|---|
| 29 | include demux/Makefile.mk |
|---|
| 30 | |
|---|
| 31 | # Build the PM |
|---|
| 32 | include pm/Makefile.mk |
|---|
| 33 | |
|---|
| 34 | # Build the UI |
|---|
| 35 | include ui/Makefile.mk |
|---|
| 36 | |
|---|
| 37 | # Use the mpich2-build-install target to include mpiexec in the build bin |
|---|
| 38 | # directory (all pm's require these targets) |
|---|
| 39 | mpich2-build-install: install |
|---|
| 40 | mpich2-build-uninstall: uninstall |
|---|
| 41 | |
|---|
| 42 | # A special alternate installation target when using multiple process managers |
|---|
| 43 | install-alt: install-alt-ui install-alt-pm |
|---|
| 44 | |
|---|
| 45 | all-executable: all-executable-local |
|---|
| 46 | all-executable-local: |
|---|