XML catalogue of packages which are available for installation, using the mingw-get installer.
Revision | b5cb4e13d8c8099cc3e308bb43390f528438185c (tree) |
---|---|
Time | 2013-08-26 17:56:40 |
Author | Keith Marshall <keithmarshall@user...> |
Commiter | Keith Marshall |
Add integration hooks for mingw-get-setup.
@@ -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 | + | |
1 | 10 | 2013-08-25 Earnie Boyd <earnie@users.sourceforge.net> |
2 | 11 | |
3 | 12 | * mingw32/mingw32-gmp.xml: Add 5.1.2-1 release. |
@@ -62,7 +62,7 @@ Makefile.sub: ${srcdir}/*.xml | ||
62 | 62 | for file in $^; do echo "$$file.lzma \\" | sed 's,.*/, ,' >> $@; done |
63 | 63 | echo ' $$(EXTRA_DISTFILES)' >> $@ |
64 | 64 | |
65 | -include Makefile.sub | |
65 | +sinclude Makefile.sub | |
66 | 66 | all-distfiles: unpublished issue.sed $(DISTFILES) $(auto-distfiles) |
67 | 67 | @SET_MAKE@ |
68 | 68 |
@@ -226,4 +226,11 @@ update-issue-log: FORCE | ||
226 | 226 | sed -n $(extract_log_file_footer) $(issue_log) >> issue.new; |
227 | 227 | rm -f $(issue_log) && mv issue.new $(issue_log) |
228 | 228 | |
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 | + | |
229 | 236 | # $RCSfile$: end of file |
@@ -90,4 +90,11 @@ update-references: FORCE | ||
90 | 90 | # |
91 | 91 | update-local-references: @mingw_ac_subdirs@ |
92 | 92 | |
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 | + | |
93 | 100 | # $RCSfile$: end of file |