I have a task to complete which involves building a series of libraries from source using configure; make; make install
. The generated libraries and misc files are going to be put onto an embedded system compatible with the build environment.
My question is how do I know what files got installed and where so that I can grab them and move them to the embedded environment?
Is a log created by way of running make install
? Or do I simply tee the output of make install
to a file?
Suggestions, hints and tips would be greatly appreciated.