From 0ae16f2ab7f777d38925b87a383bd3a3aea7ed74 Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Fri, 8 Jul 2005 13:54:12 +0000 Subject: [PATCH] * add local hook to remove static-components.h in distclean target. The files are generated by configure, and not part of the tarball, so distclean would be the right place to remove them. This commit was SVN r6390. --- ompi/mca/allocator/base/Makefile.am | 3 +++ ompi/mca/btl/base/Makefile.am | 3 +++ ompi/mca/coll/base/Makefile.am | 4 ++++ ompi/mca/io/base/Makefile.am | 4 ++++ ompi/mca/mpool/base/Makefile.am | 3 +++ ompi/mca/pml/base/Makefile.am | 3 +++ ompi/mca/ptl/base/Makefile.am | 3 +++ ompi/mca/topo/base/Makefile.am | 3 +++ orte/mca/errmgr/base/Makefile.am | 3 +++ orte/mca/gpr/base/Makefile.am | 2 ++ orte/mca/iof/base/Makefile.am | 2 ++ orte/mca/ns/base/Makefile.am | 3 +++ orte/mca/oob/base/Makefile.am | 3 +++ orte/mca/pls/base/Makefile.am | 2 ++ orte/mca/ras/base/Makefile.am | 3 +++ orte/mca/rds/base/Makefile.am | 3 +++ orte/mca/rmaps/base/Makefile.am | 3 +++ orte/mca/rmgr/base/Makefile.am | 3 +++ orte/mca/rml/base/Makefile.am | 2 ++ orte/mca/schema/base/Makefile.am | 2 ++ orte/mca/soh/base/Makefile.am | 3 +++ 21 files changed, 60 insertions(+) diff --git a/ompi/mca/allocator/base/Makefile.am b/ompi/mca/allocator/base/Makefile.am index baaa3e3baf..f43ad6535a 100644 --- a/ompi/mca/allocator/base/Makefile.am +++ b/ompi/mca/allocator/base/Makefile.am @@ -41,3 +41,6 @@ else ompidir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/ompi/mca/btl/base/Makefile.am b/ompi/mca/btl/base/Makefile.am index 25e2be93da..7597a039ba 100644 --- a/ompi/mca/btl/base/Makefile.am +++ b/ompi/mca/btl/base/Makefile.am @@ -42,3 +42,6 @@ else ompidir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/ompi/mca/coll/base/Makefile.am b/ompi/mca/coll/base/Makefile.am index 3fdcf80db3..c73024344a 100644 --- a/ompi/mca/coll/base/Makefile.am +++ b/ompi/mca/coll/base/Makefile.am @@ -42,3 +42,7 @@ ompi_HEADERS = $(headers) else ompidir = $(includedir) endif + + +distclean-local: + rm -f static-components.h diff --git a/ompi/mca/io/base/Makefile.am b/ompi/mca/io/base/Makefile.am index 015bbc5851..7ed3cb9671 100644 --- a/ompi/mca/io/base/Makefile.am +++ b/ompi/mca/io/base/Makefile.am @@ -40,3 +40,7 @@ ompi_HEADERS = $(headers) else ompidir = $(includedir) endif + + +distclean-local: + rm -f static-components.h diff --git a/ompi/mca/mpool/base/Makefile.am b/ompi/mca/mpool/base/Makefile.am index 81618db03d..523e4ea931 100644 --- a/ompi/mca/mpool/base/Makefile.am +++ b/ompi/mca/mpool/base/Makefile.am @@ -44,3 +44,6 @@ else ompidir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/ompi/mca/pml/base/Makefile.am b/ompi/mca/pml/base/Makefile.am index 49effd2060..60a466dd2d 100644 --- a/ompi/mca/pml/base/Makefile.am +++ b/ompi/mca/pml/base/Makefile.am @@ -52,3 +52,6 @@ else ompidir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/ompi/mca/ptl/base/Makefile.am b/ompi/mca/ptl/base/Makefile.am index 75d13ead4e..b687075e9d 100644 --- a/ompi/mca/ptl/base/Makefile.am +++ b/ompi/mca/ptl/base/Makefile.am @@ -57,3 +57,6 @@ else ompidir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/ompi/mca/topo/base/Makefile.am b/ompi/mca/topo/base/Makefile.am index 4151db5766..b07ea95f2e 100644 --- a/ompi/mca/topo/base/Makefile.am +++ b/ompi/mca/topo/base/Makefile.am @@ -50,3 +50,6 @@ else ompidir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/orte/mca/errmgr/base/Makefile.am b/orte/mca/errmgr/base/Makefile.am index e838747ad4..2c9be11cd9 100644 --- a/orte/mca/errmgr/base/Makefile.am +++ b/orte/mca/errmgr/base/Makefile.am @@ -45,3 +45,6 @@ orte_HEADERS = $(headers) else ortedir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/orte/mca/gpr/base/Makefile.am b/orte/mca/gpr/base/Makefile.am index 355f3fa9d3..457e03ff18 100644 --- a/orte/mca/gpr/base/Makefile.am +++ b/orte/mca/gpr/base/Makefile.am @@ -45,3 +45,5 @@ else ortedir = $(includedir) endif +distclean-local: + rm -f static-components.h diff --git a/orte/mca/iof/base/Makefile.am b/orte/mca/iof/base/Makefile.am index abec472e4d..5055a1f184 100644 --- a/orte/mca/iof/base/Makefile.am +++ b/orte/mca/iof/base/Makefile.am @@ -50,3 +50,5 @@ else ortedir = $(includedir) endif +distclean-local: + rm -f static-components.h diff --git a/orte/mca/ns/base/Makefile.am b/orte/mca/ns/base/Makefile.am index a4e5a829a7..968b8c62b7 100644 --- a/orte/mca/ns/base/Makefile.am +++ b/orte/mca/ns/base/Makefile.am @@ -52,3 +52,6 @@ orte_HEADERS = $(headers) else ortedir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/orte/mca/oob/base/Makefile.am b/orte/mca/oob/base/Makefile.am index 9cb9fd7cfc..586910d21c 100644 --- a/orte/mca/oob/base/Makefile.am +++ b/orte/mca/oob/base/Makefile.am @@ -50,3 +50,6 @@ orte_HEADERS = $(headers) else ortedir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/orte/mca/pls/base/Makefile.am b/orte/mca/pls/base/Makefile.am index cfc5e41879..bd1ed166eb 100644 --- a/orte/mca/pls/base/Makefile.am +++ b/orte/mca/pls/base/Makefile.am @@ -43,3 +43,5 @@ else ortedir = $(includedir) endif +distclean-local: + rm -f static-components.h diff --git a/orte/mca/ras/base/Makefile.am b/orte/mca/ras/base/Makefile.am index f266acd710..924b424b0d 100644 --- a/orte/mca/ras/base/Makefile.am +++ b/orte/mca/ras/base/Makefile.am @@ -47,3 +47,6 @@ orte_HEADERS = $(headers) else ortedir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/orte/mca/rds/base/Makefile.am b/orte/mca/rds/base/Makefile.am index cb33f427f0..e0bc22b82b 100644 --- a/orte/mca/rds/base/Makefile.am +++ b/orte/mca/rds/base/Makefile.am @@ -46,3 +46,6 @@ orte_HEADERS = $(headers) else ortedir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/orte/mca/rmaps/base/Makefile.am b/orte/mca/rmaps/base/Makefile.am index d1952a5389..284df6bde4 100644 --- a/orte/mca/rmaps/base/Makefile.am +++ b/orte/mca/rmaps/base/Makefile.am @@ -46,3 +46,6 @@ orte_HEADERS = $(headers) else ortedir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/orte/mca/rmgr/base/Makefile.am b/orte/mca/rmgr/base/Makefile.am index 1cce9d8a04..289b7fa6f1 100644 --- a/orte/mca/rmgr/base/Makefile.am +++ b/orte/mca/rmgr/base/Makefile.am @@ -51,3 +51,6 @@ orte_HEADERS = $(headers) else ortedir = $(includedir) endif + +distclean-local: + rm -f static-components.h diff --git a/orte/mca/rml/base/Makefile.am b/orte/mca/rml/base/Makefile.am index 1606db069d..37ec7007e0 100644 --- a/orte/mca/rml/base/Makefile.am +++ b/orte/mca/rml/base/Makefile.am @@ -42,3 +42,5 @@ else ortedir = $(includedir) endif +distclean-local: + rm -f static-components.h diff --git a/orte/mca/schema/base/Makefile.am b/orte/mca/schema/base/Makefile.am index df5fd2c8f3..b6dd7c5684 100644 --- a/orte/mca/schema/base/Makefile.am +++ b/orte/mca/schema/base/Makefile.am @@ -45,3 +45,5 @@ else ortedir = $(includedir) endif +distclean-local: + rm -f static-components.h diff --git a/orte/mca/soh/base/Makefile.am b/orte/mca/soh/base/Makefile.am index 6e21cd78b2..7f82441356 100644 --- a/orte/mca/soh/base/Makefile.am +++ b/orte/mca/soh/base/Makefile.am @@ -49,3 +49,6 @@ orte_HEADERS = $(headers) else ortedir = $(includedir) endif + +distclean-local: + rm -f static-components.h