X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=usage.go;h=985e879095bf8eaefd77cf72f8a312bf18df5eff;hb=a1394bc35f4473f55d6e56afa720c490d3e7f6bd;hp=80bea559a98c7f6bb9e1bcc89759e5fe35aeb04e;hpb=609842c96d2bb25c509f3d2949fe26f60ec03a5f;p=goredo.git diff --git a/usage.go b/usage.go index 80bea55..985e879 100644 --- a/usage.go +++ b/usage.go @@ -24,7 +24,7 @@ import ( ) const ( - Version = "1.3.0" + Version = "1.8.0" Warranty = `Copyright (C) 2020-2021 Sergey Matveev This program is free software: you can redistribute it and/or modify @@ -46,7 +46,8 @@ func usage(cmd string) { case "redo": d = `Usage: redo [options] [target ...] -Forcefully and *sequentially* build specified targets.` +Forcefully and *sequentially* build specified targets. +If no targets specified, then use "all" one.` case "redo-ifchange": d = `Usage: redo-ifchange target [...] @@ -87,23 +88,28 @@ anyway.` Display .do search paths for specified target. Exits successfully if the last .do in output if the found existing one.` case "redo-targets": - d = `Usage: redo-targets + d = `Usage: redo-targets [target ...] List all currently known targets.` case "redo-sources": - d = `Usage: redo-sources + d = `Usage: redo-sources [target ...] List all currently known source files.` case "redo-ood": - d = `Usage: redo-ood + d = `Usage: redo-ood [target ...] List all currently known out-of-date targets.` + case "redo-affects": + d = `Usage: redo-affects target [...] + +List all targets that will be affected by changing the specified ones.` default: d = `Usage: goredo -symlinks goredo expects to be called through the symbolic link to it. -Available commands: redo, redo-always, redo-cleanup, redo-dot, -redo-ifchange, redo-ifcreate, redo-log, redo-stamp, redo-whichdo.` +Available commands: redo, redo-affects, redo-always, redo-cleanup, +redo-dot, redo-ifchange, redo-ifcreate, redo-log, redo-ood, +redo-sources, redo-stamp, redo-targets, redo-whichdo.` } fmt.Fprintf(os.Stderr, "%s\n\nCommon options:\n", d) flag.PrintDefaults() @@ -114,5 +120,6 @@ Additional environment variables: REDO_TOP_DIR -- do not search for .do above that directory (it can contain .redo/top as an alternative) REDO_INODE_NO_TRUST -- do not trust inode information (except for size) - and always check file's hash`) + and always check file's hash + REDO_MAKE -- bmake/gmake/none(default) jobserver protocol compatibility`) }