diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-05-14 00:59:28 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-05-14 00:59:28 +0200 |
commit | b42d3084bacac629ec492159841659ef20ff1d1f (patch) | |
tree | 08ed7b8116d26b18b05b8fdb647a11c070cdbfae | |
parent | d0c30f94b6ae0e4660f176e5fa7e70ea2df0b39e (diff) | |
download | blogc-b42d3084bacac629ec492159841659ef20ff1d1f.tar.gz blogc-b42d3084bacac629ec492159841659ef20ff1d1f.tar.bz2 blogc-b42d3084bacac629ec492159841659ef20ff1d1f.zip |
make: updated man page
-rw-r--r-- | man/blogc-make.1.ronn | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/man/blogc-make.1.ronn b/man/blogc-make.1.ronn index 2d51992..6516216 100644 --- a/man/blogc-make.1.ronn +++ b/man/blogc-make.1.ronn @@ -45,12 +45,20 @@ Clean built files and empty directories in output directory. ### runserver -Run `blogc-runserver(1)` pointing to output directory, if available. This -rule accepts some arguments, in the following format: +Run `blogc-runserver(1)` (if available) pointing to output directory, watching +for changes in the source files and rebuilding as needed. This rule accepts +some arguments, in the following format: runserver:host=127.0.0.1,port=8080,threads=20 -The values in the example are the default values. +The values in the example are the default values. Rebuilds are done by running +`blogc-make all` internally. + +### watch + +Watch for changes in the source files, rebuilding as needed. + +Rebuilds are done by running `blogc-make all` internally. ## BUILD RULES |