- do not copy docbook files during install

This commit is contained in:
Christophe Bothamy 2004-01-08 22:27:07 +00:00
parent d28d41bf99
commit 472dea189f

View File

@ -1,6 +1,6 @@
###################################################################
# doc/docbook/Makefile
# $Id: Makefile.in,v 1.16 2003-12-07 23:36:58 cbothamy Exp $
# $Id: Makefile.in,v 1.17 2004-01-08 22:27:07 cbothamy Exp $
#
# Builds documentation in various formats from SGML source, and
# allows easy update to the Bochs web site.
@ -69,12 +69,12 @@ copy_from_srcdir::
$(TARGZ): all copy_from_srcdir fixperm
rm -f $(TARGZ)
tar cf - $(INSTALL_LIST) --exclude=CVS --exclude=*.dbk | gzip > $(TARGZ)
tar cf - $(INSTALL_LIST) --exclude=CVS --exclude=.cvsignore --exclude=*.dbk | gzip > $(TARGZ)
install: all copy_from_srcdir
for i in $(DESTDIR)$(docdir); do if test ! -d $$i; then mkdir -p $$i; fi; done
#for i in $(INSTALL_LIST); do cp -r $$i $(DESTDIR)$(docdir); done
for i in $(INSTALL_LIST); do tar cf - --exclude=CVS $$i | ( cd $(DESTDIR)$(docdir); tar xf - ); done
for i in $(INSTALL_LIST); do tar cf - --exclude=CVS --exclude=.cvsignore --exclude=*.dbk $$i | ( cd $(DESTDIR)$(docdir); tar xf - ); done
test_sfuser:
@if test "$$SFUSER" = ""; then SFUSER=`whoami`; export SFUSER; fi; \