blob: 5da214dca70fced3e09b36a829c0c7ed1895672d [file] [log] [blame]
#!/bin/sh
# autobuild.sh: Monitors the source directory for documentation file changes
# and builds it continuously in the background.
#
# Public domain.
#
bin/python scripts/nosy.py .
# First forced build.
#make -C docs html
# Monitored builds.
#bin/python watchmedo shell-command \
# --patterns="*.rst;*.rst.inc;*.py;*.py.swp;*.rst.swp;*.rst.inc.swp" \
# --ignore-patterns=".*;#*;*~" \
# --ignore-directories \
# --recursive \
# --command='make -C docs html' \
# src/ docs/source/