Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Marshall <keithmarshall@@users.sf.net>2012-01-15 16:27:13 +0400
committerKeith Marshall <keithmarshall@@users.sf.net>2012-01-15 16:27:13 +0400
commit3ef75004369383aadfa4801d2b453a61883fa6a0 (patch)
tree21b73ffc59706d0d55021e12d37f8c750fe5be05
parent09223354f9a0ddf2a888028705b70c6010a80b80 (diff)
Generalise 'all' rule to arbitrary prerequisite sub-directories.
-rw-r--r--winsup/w32api/ChangeLog7
-rw-r--r--winsup/w32api/Makefile.in4
2 files changed, 9 insertions, 2 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index 5ed162475..6e879e3c8 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -1,5 +1,12 @@
2012-01-15 Keith Marshall <keithmarshall@users.sf.net>
+ Generalise 'all' rule to arbitrary prerequisite sub-directories.
+
+ * Makefile.in: (all): Make it depend on all $(SUBDIRS), not just on...
+ (lib): ...this; replace it with a generic $(SUBDIRS) goal.
+
+2012-01-15 Keith Marshall <keithmarshall@users.sf.net>
+
Derive package release index from configure time specification.
* configure.ac (PACKAGE_RELEASE): New variable; define it, such that
diff --git a/winsup/w32api/Makefile.in b/winsup/w32api/Makefile.in
index 68b57a083..39892c8e6 100644
--- a/winsup/w32api/Makefile.in
+++ b/winsup/w32api/Makefile.in
@@ -33,14 +33,14 @@ DISTFILES = \
ChangeLog configure.ac Makefile.in Makefile.comm.in configure \
config.guess config.sub install-sh README.w32api TODO CONTRIBUTIONS
-all: lib
+all: $(SUBDIRS)
%-subdirs:
for i in $(SUBDIRS); do \
$(MAKE) -C $$i $*; \
done
-lib:
+$(SUBDIRS):
$(MAKE) -C $@
test: