LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How can I do a clean-up? (https://www.linuxquestions.org/questions/linux-newbie-8/how-can-i-do-a-clean-up-19804/)

J_Szucs 04-29-2002 10:50 PM

How can I do a clean-up?
 
When I install a software from source, there are many (source, object,etc.) files that might be removed after the binary is ready.
How can I remove them?
(P.S. I tried 'make clean', but that destroyed the program.)

acid_kewpie 04-30-2002 02:27 AM

well you'd either just delete the entire source directory or not. erm.. i guess you could put the stuff back in a tar.bz2 or something if you think you might need it later. make clean won't stop the program working, only the uninstalled version in the source directories.

J_Szucs 04-30-2002 03:52 PM

Do a clean-up
 
Actually, 'make clean' command ruined my xmms, and I had to recompile and install it.
On the other hand: I do not know if I have a 'source directory'.
If I simply use
./configure
make
make install
will the compiled binary files or other necessary files reside in the same directory where the source and object files can be found? If so, I cannot delete the source directory as it also contains the binaries.

bozotix 04-30-2002 04:17 PM

...
 
If you want to remove files, that ./configure created, you just have to run 'make distclean' (it won't harm the sources)


All times are GMT -5. The time now is 10:41 PM.