Hi Fred,
> I redirected the output to a customized folder but neither the c code
> nor the object files are in this folder.
> I'm puzzled.
I believe these are the hbmk2 options your are looking for:
-o<outname> output file name
This is the name of the binary you are building
-workdir=<dir> working directory
(default: .hbmk/plat/comp in incremental mode, OS
temp directory otherwise)
Make sure that the directory you specify already exists. This is where
the .o and .c files will be put if you build incrementally.
-inc[-] enable/disable incremental build mode (default:
disabled)
The second dash ( -inc- ) means do *not* build incrementally, and erase
existing .o and .c files. This is useful for temporarily turning off
incremental build from the commandline when the .hbp file says -inc for
normal builds.
To get the help topics listed in a file, do
hbmk2 --help > hbmk2help.txt
or
hbmk2 --longhelp > hbmk2longhelp.txt
Regards,
Klas