• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

XML catalogue of packages which are available for installation, using the mingw-get installer.


Commit MetaInfo

Revisionb5cb4e13d8c8099cc3e308bb43390f528438185c (tree)
Time2013-08-26 17:56:40
AuthorKeith Marshall <keithmarshall@user...>
CommiterKeith Marshall

Log Message

Add integration hooks for mingw-get-setup.

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
1+2013-08-26 Keith Marshall <keithmarshall@users.sourceforge.net>
2+
3+ Add integration hooks for mingw-get-setup.
4+
5+ * Makefile.in Makefile.comm.in:
6+ (build.tag, clean, dist, distclean, maintainer-clean): New targets;
7+ implement them as no-ops; they are required when invoked recursively,
8+ as a sub-make of mingw-get-setup, but are not otherwise needed here.
9+
110 2013-08-25 Earnie Boyd <earnie@users.sourceforge.net>
211
312 * mingw32/mingw32-gmp.xml: Add 5.1.2-1 release.
--- a/Makefile.comm.in
+++ b/Makefile.comm.in
@@ -62,7 +62,7 @@ Makefile.sub: ${srcdir}/*.xml
6262 for file in $^; do echo "$$file.lzma \\" | sed 's,.*/, ,' >> $@; done
6363 echo ' $$(EXTRA_DISTFILES)' >> $@
6464
65-include Makefile.sub
65+sinclude Makefile.sub
6666 all-distfiles: unpublished issue.sed $(DISTFILES) $(auto-distfiles)
6767 @SET_MAKE@
6868
@@ -226,4 +226,11 @@ update-issue-log: FORCE
226226 sed -n $(extract_log_file_footer) $(issue_log) >> issue.new;
227227 rm -f $(issue_log) && mv issue.new $(issue_log)
228228
229+# The following goals may be specified, when building as a sub-project
230+# of mingw-get-setup; make each a no-op here.
231+#
232+NO_OP_GOALS = build.tag dist clean distclean maintainer-clean
233+.PHONY: $(NO_OP_GOALS)
234+$(NO_OP_GOALS):
235+
229236 # $RCSfile$: end of file
--- a/Makefile.in
+++ b/Makefile.in
@@ -90,4 +90,11 @@ update-references: FORCE
9090 #
9191 update-local-references: @mingw_ac_subdirs@
9292
93+# The following goals may be specified, when building as a sub-project
94+# of mingw-get-setup; pass each request to all designated subdirectories,
95+# in each of which it will become a no-op.
96+#
97+NO_OP_GOALS = build.tag dist clean distclean maintainer-clean
98+$(NO_OP_GOALS): @mingw_ac_subdirs@
99+
93100 # $RCSfile$: end of file