* Makefile.in: Make install-license .PHONY. Make sure that doc directory is
created before copying to it.
This commit is contained in:
parent
52d82ba527
commit
c9f1f4b438
|
@ -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>
|
2006-08-30 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* Makefile.in: Make installation of CYGWIN_LICENSE configurable.
|
* Makefile.in: Make installation of CYGWIN_LICENSE configurable.
|
||||||
|
|
|
@ -48,7 +48,7 @@ ZLIB=${findstring zlib,$(SUBDIRS)}
|
||||||
|
|
||||||
INSTALL_LICENSE:=@INSTALL_LICENSE@
|
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)
|
$(SUBDIRS) $(INSTALL_SUBDIRS) $(CLEAN_SUBDIRS)
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
|
@ -64,7 +64,8 @@ endif
|
||||||
all: Makefile $(SUBDIRS)
|
all: Makefile $(SUBDIRS)
|
||||||
|
|
||||||
install-license: CYGWIN_LICENSE
|
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)
|
install: Makefile $(INSTALL_LICENSE) $(INSTALL_SUBDIRS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue