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>2001-12-19 06:35:36 +0300
committerChristopher Faylor <me@cgf.cx>2001-12-19 06:35:36 +0300
commitaa053fd4618972cf579150ddb3ca5412639de2c7 (patch)
tree71843b7fd80b32ad42bc94903d6ce41c6d969720 /winsup/Makefile.in
parent60565ed65755b5d6803dd5eb235973031bdf9d5c (diff)
* Makefile.in: Don't attempt to use zlib directory as a dependency if it
doesn't exist.
Diffstat (limited to 'winsup/Makefile.in')
-rw-r--r--winsup/Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/winsup/Makefile.in b/winsup/Makefile.in
index 7ed371ea2..4a6d23e25 100644
--- a/winsup/Makefile.in
+++ b/winsup/Makefile.in
@@ -39,6 +39,7 @@ includedir:=@includedir@
SUBDIRS=@SUBDIRS@
INSTALL_SUBDIRS=${patsubst %,install_%,$(SUBDIRS)}
CLEAN_SUBDIRS=${patsubst %,clean_%,$(SUBDIRS)}
+ZLIB=${findstring zlib,$(SUBDIRS)}
.PHONY: all install clean all-info info install-info check \
$(SUBDIRS) $(INSTALL_SUBDIRS) $(CLEAN_SUBDIRS)
@@ -107,7 +108,7 @@ mingw: w32api
cygwin: w32api
-cinstall: mingw bz2lib zlib
+cinstall: mingw bz2lib $(ZLIB)
install_utils: cygwin mingw
@@ -115,4 +116,4 @@ install_mingw: w32api
install_cygwin: w32api
-install_cinstall: mingw bz2lib zlib
+install_cinstall: mingw bz2lib $(ZLIB)