]> Cypherpunks.ru repositories - goredo.git/blob - usage.go
Correct relative dependency paths
[goredo.git] / usage.go
1 /*
2 goredo -- djb's redo implementation on pure Go
3 Copyright (C) 2020-2021 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package main
19
20 import (
21         "flag"
22         "fmt"
23         "os"
24 )
25
26 const (
27         Version  = "1.8.0"
28         Warranty = `Copyright (C) 2020-2021 Sergey Matveev
29
30 This program is free software: you can redistribute it and/or modify
31 it under the terms of the GNU General Public License as published by
32 the Free Software Foundation, version 3 of the License.
33
34 This program is distributed in the hope that it will be useful,
35 but WITHOUT ANY WARRANTY; without even the implied warranty of
36 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
37 GNU General Public License for more details.
38
39 You should have received a copy of the GNU General Public License
40 along with this program.  If not, see <http://www.gnu.org/licenses/>.`
41 )
42
43 func usage(cmd string) {
44         var d string
45         switch cmd {
46         case "redo":
47                 d = `Usage: redo [options] [target ...]
48
49 Forcefully and *sequentially* build specified targets.
50 If no targets specified, then use "all" one.`
51         case "redo-ifchange":
52                 d = `Usage: redo-ifchange target [...]
53
54 Build specified targets in parallel, if they are changed.
55 Record them as dependencies for current target.`
56         case "redo-ifcreate":
57                 d = `Usage: redo-ifcreate target [...]
58
59 Record ifcreate dependency for current target. Unusable outside .do.`
60         case "redo-always":
61                 d = `Usage: redo-always
62
63 Always build current target. Unusable outside .do.`
64         case "redo-cleanup":
65                 d = `Usage: redo-cleanup [-dry-run] {full,log,tmp} [...]
66
67 Remove either all goredo's related temporary files, or kept stderr
68 logs, or everything (including .redo directories) related.`
69         case "redo-log":
70                 d = `Usage: redo-log target [ | tai64nlocal ]
71
72 Display kept target's stderr with TAI64N timestamped lines. Only the
73 last build is kept. You must enable stderr keeping with either -logs,
74 or REDO_LOGS=1.`
75         case "redo-dot":
76                 d = `Usage: redo-dot target [...]
77
78 Write dependency DOT graph to stdout.`
79         case "redo-stamp":
80                 d = `Usage: redo-stamp < [$3]
81
82 Record stamp dependency for current target. Unusable outside .do.
83 Stamp dependency does not play any role, as all targets are hashed
84 anyway.`
85         case "redo-whichdo":
86                 d = `Usage: redo-whichdo target
87
88 Display .do search paths for specified target. Exits successfully
89 if the last .do in output if the found existing one.`
90         case "redo-targets":
91                 d = `Usage: redo-targets [target ...]
92
93 List all currently known targets.`
94         case "redo-sources":
95                 d = `Usage: redo-sources [target ...]
96
97 List all currently known source files.`
98         case "redo-ood":
99                 d = `Usage: redo-ood [target ...]
100
101 List all currently known out-of-date targets.`
102         case "redo-affects":
103                 d = `Usage: redo-affects target [...]
104
105 List all targets that will be affected by changing the specified ones.`
106         default:
107                 d = `Usage: goredo -symlinks
108
109 goredo expects to be called through the symbolic link to it.
110 Available commands: redo, redo-affects, redo-always, redo-cleanup,
111 redo-dot, redo-ifchange, redo-ifcreate, redo-log, redo-ood,
112 redo-sources, redo-stamp, redo-targets, redo-whichdo.`
113         }
114         fmt.Fprintf(os.Stderr, "%s\n\nCommon options:\n", d)
115         flag.PrintDefaults()
116         fmt.Fprintln(os.Stderr, `
117 Additional environment variables:
118   NO_COLOR -- disable messages colouring
119   REDO_NO_SYNC -- disable files/directories explicit filesystem syncing
120   REDO_TOP_DIR -- do not search for .do above that directory
121                   (it can contain .redo/top as an alternative)
122   REDO_INODE_NO_TRUST -- do not trust inode information (except for size)
123                          and always check file's hash
124   REDO_MAKE -- bmake/gmake/none(default) jobserver protocol compatibility`)
125 }