LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   Where is the results from make? (https://www.linuxquestions.org/questions/programming-9/where-is-the-results-from-make-4175694882/)

frrobert 05-07-2021 10:58 PM

Where is the results from make?
 
I am compiling curl from source.

I have a silly question.
The last two steps are
make
make install

All make install does is copy the files to their final locations.

After you run make where are the compiled files before you run make install?

Thanks.

astrogeek 05-07-2021 11:11 PM

Different locations for different projects and sources, but typically they will be in the same directory as the source from which they are compiled, and often the final executable will be in the same directory as the Makefile.

You should look at the install target in the Makefile for the application you are building and see what it copies and where it copies from.

NevemTeve 05-08-2021 12:26 AM

Try this:
Code:

make
find . -name curl



All times are GMT -5. The time now is 11:23 AM.