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:
authorChristopher Faylor <me@cgf.cx>2000-04-09 10:15:43 +0400
committerChristopher Faylor <me@cgf.cx>2000-04-09 10:15:43 +0400
commit7f363152c55e839596c262b491b747e4d24b0b62 (patch)
treed522c7cd364ea963d34f00bae5807dac51b1952d /winsup/Makefile.in
parentd5337b4c1301ee68aa243ffbb0acc1ba25686d33 (diff)
* Makefile.in: Work around MAKEOVERRIDES problem with older versions of make.
* Makefile.common: Ditto.
Diffstat (limited to 'winsup/Makefile.in')
-rw-r--r--winsup/Makefile.in14
1 files changed, 10 insertions, 4 deletions
diff --git a/winsup/Makefile.in b/winsup/Makefile.in
index dcb1263c0..f29734de9 100644
--- a/winsup/Makefile.in
+++ b/winsup/Makefile.in
@@ -45,7 +45,13 @@ CLEAN_SUBDIRS=${patsubst %,clean_%,$(SUBDIRS)}
.SUFFIXES:
-unexport MAKEOVERRIDES
+MAKEOVERRIDES_WORKAROUND=${wordlist 2,1,a b c}
+
+ifneq ($(MAKEOVERRIDES_WORKAROUND),)
+ override MAKE:=$(MAKE) $(MAKEOVERRIDES)
+ MAKEOVERRIDES:=
+ export MAKEOVERRIDES
+endif
all: Makefile $(SUBDIRS)
@@ -54,13 +60,13 @@ install: Makefile $(INSTALL_SUBDIRS)
clean: $(CLEAN_SUBDIRS)
$(SUBDIRS):
- @$(MAKE) -C $@ $(MAKEOVERRIDES) all
+ @$(MAKE) -C $@ all
$(INSTALL_SUBDIRS):
- @$(MAKE) -C ${patsubst install_%,%,$@} $(MAKEOVERRIDES) install
+ @$(MAKE) -C ${patsubst install_%,%,$@} install
$(CLEAN_SUBDIRS):
- @$(MAKE) -C ${patsubst clean_%,%,$@} $(MAKEOVERRIDES) clean
+ @$(MAKE) -C ${patsubst clean_%,%,$@} clean
.PRECIOUS: Makefile