mirror of https://gitee.com/bigwinds/arangodb
17 lines
518 B
Makefile
Executable File
17 lines
518 B
Makefile
Executable File
# -*- mode: Makefile; -*-
|
|
|
|
MANUAL_DST="fceller@www.avocadodb.org:/srv/www/www.avocadodb.org/avoc/manuals"
|
|
|
|
################################################################################
|
|
## publish
|
|
################################################################################
|
|
|
|
.PHONY: publish
|
|
|
|
publish:
|
|
(cd Doxygen/wiki && git checkout --force && git pull)
|
|
$(MAKE) wiki
|
|
(cd Doxygen/wiki && git add *.md; git commit -m "`date`" -a; git push)
|
|
@for w in $(WIKI); do scp Doxygen/html/$$w.html $(MANUAL_DST); done
|
|
|