Results 1 to 2 of 2
I have a question regarding compiling software from source. As we all know, the general comands are
Code:
1. ./configure [optiois]
2. make
3. make install
4. make clean (OPTIONAL)
...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 04-15-2003 #1Linux Engineer
- Join Date
- Nov 2002
- Location
- Queens, NY
- Posts
- 1,319
compiling from source
I have a question regarding compiling software from source. As we all know, the general comands are
What I'd like to know is, where are all the libraries stored for the software? What do we do if we wanted to uninstall this software that we just installed using this method? Destroying the executable file isn't going to be enough in this situation.Code:1. ./configure [optiois] 2. make 3. make install 4. make clean (OPTIONAL)
The best things in life are free.
- 04-15-2003 #2Linux Guru
- Join Date
- Oct 2001
- Location
- Täby, Sweden
- Posts
- 7,578
If this was made with automake (as most packages with ./configure are), "make uninstall" will usually work.


Reply With Quote
