* Makefile.in: Make install-license .PHONY. Make sure that doc directory is

created before copying to it.
This commit is contained in:
Christopher Faylor 2006-08-31 00:53:48 +00:00
parent 52d82ba527
commit c9f1f4b438
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-08-30 Christopher Faylor <cgf@timesys.com>
* Makefile.in: Make install-license .PHONY. Make sure that doc
directory is created before copying to it.
2006-08-30 Corinna Vinschen <corinna@vinschen.de>
* Makefile.in: Make installation of CYGWIN_LICENSE configurable.

View File

@ -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)