]> Cypherpunks.ru repositories - goredo.git/blob - doc/cmds.texi
Ability to rely on mtime, instead of ctime
[goredo.git] / doc / cmds.texi
1 @node Commands
2 @unnumbered Commands
3
4 There are three basic main commands, originally suggested by DJB in his
5 articles:
6
7 @table @command
8 @item redo
9     Forcefully and sequentially build specified targets. This is the
10     main command you will explicitly use from the command line. If no
11     targets are given, then @file{all} target will be used by default.
12 @item redo-ifchange
13     Rebuild specified targets if they are out-of-date and record them as
14     a dependency for the currently run target. This is the main command
15     you will use in @file{.do} files.
16 @item redo-ifcreate
17     Record the non-existent file dependency for the currently run
18     target. Target will be rebuilt if any of the given files appear. Can
19     be used only inside @file{.do} file.
20 @end table
21
22 Pay attention that @command{redo-ifchange} enables parallel builds of
23 the given targets, but ordinary @command{redo} is not: it builds
24 specified targets sequentially and stops when error happens.
25
26 @option{-x} option can be used to enable tracing (@code{set -x}) of the
27 currently run shell script @file{.do} file. @option{-xx} option enables
28 tracing for all invoked @file{.do} files further.
29
30 With @option{-j} option you can enable parallel builds, probably with an
31 infinite number of workers (@code{=0}). Also you can set
32 @env{$REDO_JOBS} to automatically apply that setting globally.
33
34 Read about @ref{Logs, log storage capabilities}.
35
36 @option{-log-pid} (@env{$REDO_LOG_PID=1}) can be used to prefix job's
37 @code{stderr} with the PID, that could be useful during parallel builds.
38 @option{-d} (@env{$REDO_DEBUG=1}) enables debug messages.
39
40 @option{-no-progress} (@env{$REDO_NO_PROGRESS=1}) and
41 @option{-no-status} (@env{$REDO_NO_STATUS=1}) disable statusline and
42 progress display. @env{$NO_COLOR=1} disables progress/debug messages
43 colouring.
44
45 By default all build commands use @code{fsync} to assure data is reached
46 the disk. You can disable its usage with @env{$REDO_NO_SYNC=1}
47 environment variable, for speeding up the build process.
48
49 There are other commands that could be found in other implementations too:
50
51 @table @command
52 @item redo-always
53     Record current target as an always-do dependency. By definition it
54     should be always build. @command{goredo} tries to build it once per
55     @strong{run}.
56 @item redo-stamp
57     Record "stamp" dependency. It reads @code{stdin} and stores its hash
58     in the dependency database. It is not used anyhow, it is dummy. Read
59     about @ref{Stamping, stamping} in the FAQ. It is left only for
60     compatibility with some other implementations.
61 @item redo-targets, redo-ood
62     Show all known targets, possibly limited by specified directories.
63     @command{redo-ood} shows only the out-of-date ones.
64 @item redo-sources
65     Recursively show all source files the given targets depend on.
66 @item redo-affects
67     It is not in other distributions, but it is some kind of opposite of
68     @command{redo-sources} -- shows the targets that will be affected by
69     specified files change.
70 @end table
71
72 And there are some maintenance and debug commands:
73
74 @table @command
75 @item redo-cleanup
76     Removes either temporary (@option{tmp}), log files (@option{log}),
77     or everything related to @command{goredo} (@option{full}).
78 @item redo-whichdo
79     Display @file{.do} search paths for specified target (similar to
80     @command{apenwarr/redo}):
81 @example
82 $ redo-whichdo x/y/a.b.o
83 x/y/a.b.o.do
84 x/y/default.b.o.do
85 x/y/default.o.do
86 x/y/default.do
87 x/default.b.o.do
88 x/default.o.do
89 x/default.do
90 default.b.o.do
91 default.o.do
92 default.do
93 ../default.b.o.do
94 ../default.o.do
95 ../default.do
96 @end example
97 @item redo-dot
98     Dependency
99     @url{https://en.wikipedia.org/wiki/DOT_(graph_description_language), DOT}
100     graph generator. For example to visualize your dependencies with GraphViz:
101 @example
102 $ redo target [...] # to assure that **/.redo/*.rec are filled up
103 $ redo-dot target [...] > whatever.dot
104 $ dot -Tpng whatever.dot > whatever.png # possibly add -Gsplines=ortho
105 @end example
106
107 @end table