
makeppreplay -- Fast repeater of selected makepp actions

-A, --argsfile, -c, -C, --directory, -I, --include, -k, --keep-going, -M, --module, --root-directory, -t, --temporary
makeppreplay [ option ... ] [ VAR=value ] [ target ... ]
mppr [ option ... ] [ VAR=value ] [ target ... ]
Makeppreplay tries to do the same things makepp did. It does this solely based on the remembered build info, saving much time by not reading makefiles, not parsing commands, not scanning files and not looking at every repository file, to see whether it fits. But unlike makepp it reuses all repository links it finds.
It does not know about phony or default targets, so you have to give it real files or directories, as a shortcut for all files makepp has built therein. By default it builds all files makepp built in the current or chosen directory.
This approach is only correct when there are no structural changes,
i.e.
no different modules to be linked,
no moved files,
no different #include statements,
which should possibly have caused those files to be (re)built.
After updating from version control,
or when building against a repository,
where others may have caused such changes,
you should call makepp once after potential changes (e.g.
in the morning after an overnight repository update),
to be sure your build infos are up to date.
Not reading makefiles means, it will not know any subs (Perl functions) defined in them. For this you should put all your functions into an external module. It will also not know about any variable settings, which is only a problem if your Perl code accesses them (because in rule actions they have already been expanded).

This is still experimental and imperfect.
-j or --dont-build.--no-populate-bc (because makeppreplay doesn't guarantee a correct build).
Makepp might later publish to the build cache anything it retains. a: b
b: c
cmd_producing_a_and_b

Options include some of the makepp options, plus two new ones, for loading modules that would normally be loaded from a makefile.
Read the file and parse it as possibly quoted whitespace- and/or newline-separated options.
Cd up to the directory containing a RootMakeppfile.
Cd to the given directory before loading the makefile and trying to build the targets. This is more or less equivalent to specifying a directory with -F, except that subsequent -C, -f, -F, -I and -R options are interpreted relative to the new directory, rather than the old one.
Add dir to Perl load path @INC.
Build as many files as possible, even if some of them have errors. By default, makepp stops when it encounters the first error, even if there are other files that need to be built that don't depend on the erroneous file.
Load module and import any functions it exports.
Makeppreplay modifies the build info of all files it touched and of all dependencies it found modified. It marks them in such a way that makepp nevertheless knows that it needs to rescan these files. But with this option you can prevent these modifications, so that makepp will simply condsider all files makeppreplay created as incorrect.
Print out the version number.

Probably the most common use is relinking either a program or a library after editing a source file:
makeppreplay subdir/foo.o bin/bar
mppr subdir/foo.o lib/libbar.so

Makeppreplay looks at the following environment variable:
Any options you may want to always pass.

Daniel Pfeiffer (occitan@esperanto.org)