diff options
author | Keith Marshall <keithmarshall@@users.sf.net> | 2012-01-15 12:27:13 +0000 |
---|---|---|
committer | Keith Marshall <keithmarshall@@users.sf.net> | 2012-01-15 12:27:13 +0000 |
commit | 3ef75004369383aadfa4801d2b453a61883fa6a0 (patch) | |
tree | 21b73ffc59706d0d55021e12d37f8c750fe5be05 /winsup/w32api | |
parent | 09223354f9a0ddf2a888028705b70c6010a80b80 (diff) | |
download | newlib-3ef75004369383aadfa4801d2b453a61883fa6a0.zip newlib-3ef75004369383aadfa4801d2b453a61883fa6a0.tar.gz newlib-3ef75004369383aadfa4801d2b453a61883fa6a0.tar.bz2 |
Generalise 'all' rule to arbitrary prerequisite sub-directories.
Diffstat (limited to 'winsup/w32api')
-rw-r--r-- | winsup/w32api/ChangeLog | 7 | ||||
-rw-r--r-- | winsup/w32api/Makefile.in | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 5ed1624..6e879e3 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 68b57a0..39892c8 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: |