I am trying to streamline our build process and in particular preventing as much as possible full rebuilds. In our CI we use pbc190 compiler to compile from source code. What I observe is that even when I use the /i flag instead of /f, thus expecting an incremental rebuild, the compiler still regenerates all the PBLs which takes a lot of time (about 10 minutes). It seems the "incremental" part is only the pure compilation from PBLs to PBD which, indeed, is reasonably fast.
Is there a way to prevent the compiler from regenerating the PBLs on each invocation?