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>2006-08-31 04:53:48 +0400
committerChristopher Faylor <me@cgf.cx>2006-08-31 04:53:48 +0400
commitc9f1f4b438be2ad49806ae4abc89ecc6badfb5ef (patch)
tree084d3a8278b5ccca0135d42064d4e56ce462c9c9 /winsup/Makefile.in
parent52d82ba5277b854196ed538aa5966155abbfd225 (diff)
* Makefile.in: Make install-license .PHONY. Make sure that doc directory is
created before copying to it.
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 5aae11601..7508d439b 100644
--- a/winsup/Makefile.in
+++ b/winsup/Makefile.in
@@ -48,7 +48,7 @@ ZLIB=${findstring zlib,$(SUBDIRS)}
INSTALL_LICENSE:=@INSTALL_LICENSE@
-.PHONY: all install clean all-info info install-info check \
+.PHONY: all install clean all-info info install-info install-license check \
$(SUBDIRS) $(INSTALL_SUBDIRS) $(CLEAN_SUBDIRS)
.SUFFIXES:
@@ -64,7 +64,8 @@ endif
all: Makefile $(SUBDIRS)
install-license: CYGWIN_LICENSE
- $(INSTALL_DATA) $(srcdir)/CYGWIN_LICENSE $(prefix)/share/doc/Cygwin/CYGWIN_LICENSE
+ ${INSTALL} -d $(prefix)/share/doc/Cygwin
+ ${INSTALL} $^ $(prefix)/share/doc/Cygwin
install: Makefile $(INSTALL_LICENSE) $(INSTALL_SUBDIRS)