Software Articles and Documents


To build with JustBuild, use it instead of Make. The default goal is "all".


Command line for:

  • Incremental build : justbuild or justbuild all
  • Clean : justbuild clean
  • DistClean : justbuild distclean
  • Rebuild : justbuild clean-all or justbuild rebuild or justbuild reall
...

Introduction


One of main goals of Abc is to help developers do fewer context switches and be able to focus on project logic.

One way is to automate (in a known and expected way) the additional maintenance tasks required by the tools to be performed by the user.


...

Setup for the first time

[1] Unpack the archive:

unzip -o __ARCHIVE__.zip OR 7z x -y __ARCHIVE__.zip

(optional) Verify the checksums against the official checksum values.

Do not use checksums from unknown sources.

(optional) On Linux: chmod +x bin/* or chmod u+x bin/*.

...
..