automake-ng
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Automake-NG] [FYI] [ng] subdirs: merge $(RECURSIVE_CLEAN_TARGETS) into


From: Stefano Lattarini
Subject: [Automake-NG] [FYI] [ng] subdirs: merge $(RECURSIVE_CLEAN_TARGETS) into $(RECURSIVE_TARGETS)
Date: Sat, 11 Aug 2012 19:09:50 +0200

* lib/am/subdirs.mk: Here.  They had once been separated for historical
reasons, but such separation is not needed anymore today.
* NG-NEWS: Update.

Signed-off-by: Stefano Lattarini <address@hidden>
---
 NG-NEWS           |  4 ++++
 lib/am/subdirs.mk | 12 ++++++++----
 2 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/NG-NEWS b/NG-NEWS
index e953f52..7d3bc75 100644
--- a/NG-NEWS
+++ b/NG-NEWS
@@ -295,6 +295,10 @@ Obsolete Features Removed
   missing the relevant maintainer-specific tools (or having too old
   versions thereof).
 
+* The $(RECURSIVE_CLEAN_TARGETS) variable (never documented, and
+  always intended to be an internal detail) has been removed, its
+  content merged into the $(RECURSIVE_TARGETS) variable.
+
 
 Source Files with Unknown Extensions
 ====================================
diff --git a/lib/am/subdirs.mk b/lib/am/subdirs.mk
index 1d39596..9e70000 100644
--- a/lib/am/subdirs.mk
+++ b/lib/am/subdirs.mk
@@ -14,13 +14,17 @@
 ## You should have received a copy of the GNU General Public License
 ## along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-RECURSIVE_TARGETS += all-recursive check-recursive installcheck-recursive
-RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive        \
-  distclean-recursive maintainer-clean-recursive
+RECURSIVE_TARGETS += \
+  all-recursive \
+  check-recursive \
+  installcheck-recursive \
+  mostlyclean-recursive \
+  clean-recursive \
+  distclean-recursive \
+  maintainer-clean-recursive
 
 am.recurs.all-targets = \
   $(RECURSIVE_TARGETS) \
-  $(RECURSIVE_CLEAN_TARGETS) \
   $(am.recurs.extra-targets)
 
 # All documented targets which invoke 'make' recursively, or depend
-- 
1.7.12.rc0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]