Re: [CMake] Possible to clean files of one target library only?

2009-08-21 Thread Jörg Förstner
Hi, if I execute 'make clean', then all object files of the whole project are removed. Now I would like to clean only object files belonging to one target/library, to force rebuilding this library. How can I do this? Best Regards, Joerg If you are using CMake to

Re: [CMake] Possible to clean files of one target library only?

2009-08-20 Thread Marcel Loose
On Wed, 2009-08-19 at 11:02 -0700, Tyler Roscoe wrote: On Wed, Aug 19, 2009 at 11:54:18AM -0600, Timothy M. Shead wrote: If you are using CMake to generate makefiles, you can run make clean in a subdirectory of your build tree, and make will only remove the files for that directory - you

[CMake] Possible to clean files of one target library only?

2009-08-19 Thread Jörg Förstner
Hi, if I execute 'make clean', then all object files of the whole project are removed. Now I would like to clean only object files belonging to one target/library, to force rebuilding this library. How can I do this? Best Regards, Joerg ___ Powered

Re: [CMake] Possible to clean files of one target library only?

2009-08-19 Thread Tyler Roscoe
On Wed, Aug 19, 2009 at 03:12:39PM +0200, Jörg Förstner wrote: if I execute 'make clean', then all object files of the whole project are removed. Now I would like to clean only object files belonging to one target/library, to force rebuilding this library. How can I do this? If you add

Re: [CMake] Possible to clean files of one target library only?

2009-08-19 Thread Timothy M. Shead
Jörg Förstner wrote: Hi, if I execute 'make clean', then all object files of the whole project are removed. Now I would like to clean only object files belonging to one target/library, to force rebuilding this library. How can I do this? Best Regards, Joerg If you are using CMake to

Re: [CMake] Possible to clean files of one target library only?

2009-08-19 Thread Tyler Roscoe
On Wed, Aug 19, 2009 at 11:54:18AM -0600, Timothy M. Shead wrote: If you are using CMake to generate makefiles, you can run make clean in a subdirectory of your build tree, and make will only remove the files for that directory - you can use this to do library-specific cleaning, provided