Makefile.am: added documentation upload target

This "upload" target uploads generated documentation to
http://www.musicpd.org/doc/, and works only for my user account.
This commit is contained in:
Max Kellermann 2009-03-15 17:32:28 +01:00
parent e62580db0b
commit e1189712f9
1 changed files with 8 additions and 0 deletions

View File

@ -676,6 +676,14 @@ install-data-local: doc/api/html/index.html
doc/api/html/*.png doc/api/html/*.gif \
$(DESTDIR)$(docdir)/api/html
upload: $(DOCBOOK_HTML) doc/api/html/index.html
rsync -vpruz --delete doc/ cirrus@www.musicpd.org:/var/www/musicpd.org/www/doc/ \
--chmod=Dug+rwx,Do+rx,Fug+rw,Fo+r \
--include=protocol --include=protocol/** \
--include=user --include=user/** \
--include=api --include=api/** \
--exclude=*
endif