OSDN Git Service

Add integration hooks for mingw-get-setup.
authorKeith Marshall <keithmarshall@users.sourceforge.net>
Mon, 26 Aug 2013 08:56:40 +0000 (09:56 +0100)
committerKeith Marshall <keithmarshall@users.sourceforge.net>
Mon, 26 Aug 2013 08:56:40 +0000 (09:56 +0100)
ChangeLog
Makefile.comm.in
Makefile.in

index 73eba9e..2a9e17d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2013-08-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
+       Add integration hooks for mingw-get-setup.
+
+       * Makefile.in Makefile.comm.in:
+       (build.tag, clean, dist, distclean, maintainer-clean): New targets;
+       implement them as no-ops; they are required when invoked recursively,
+       as a sub-make of mingw-get-setup, but are not otherwise needed here.
+
 2013-08-25  Earnie Boyd  <earnie@users.sourceforge.net>
 
        * mingw32/mingw32-gmp.xml: Add 5.1.2-1 release.
index b836aa4..7b82621 100644 (file)
@@ -62,7 +62,7 @@ Makefile.sub: ${srcdir}/*.xml
        for file in $^; do echo "$$file.lzma \\" | sed 's,.*/,  ,' >> $@; done
        echo '  $$(EXTRA_DISTFILES)' >> $@
 
-include Makefile.sub
+sinclude Makefile.sub
 all-distfiles: unpublished issue.sed $(DISTFILES) $(auto-distfiles)
 @SET_MAKE@
 
@@ -226,4 +226,11 @@ update-issue-log: FORCE
        sed -n $(extract_log_file_footer) $(issue_log) >> issue.new;
        rm -f $(issue_log) && mv issue.new $(issue_log)
 
+# The following goals may be specified, when building as a sub-project
+# of mingw-get-setup; make each a no-op here.
+#
+NO_OP_GOALS = build.tag dist clean distclean maintainer-clean
+.PHONY: $(NO_OP_GOALS)
+$(NO_OP_GOALS):
+
 # $RCSfile$: end of file
index 243c691..a77bfdc 100644 (file)
@@ -90,4 +90,11 @@ update-references: FORCE
 #
 update-local-references: @mingw_ac_subdirs@
 
+# The following goals may be specified, when building as a sub-project
+# of mingw-get-setup; pass each request to all designated subdirectories,
+# in each of which it will become a no-op.
+#
+NO_OP_GOALS = build.tag dist clean distclean maintainer-clean
+$(NO_OP_GOALS): @mingw_ac_subdirs@
+
 # $RCSfile$: end of file