[chromium-dev] How can I remove .o objects in linux

2009-11-22 Thread hap 497
Hi, I follow this instruction in building chromium on linux. http://code.google.com/p/chromium/wiki/LinuxBuildInstructions Can you please tell me how can I remove all .o after the build? I tried 'make clean', but it said there is no 'clean' target'. Thank you. -- Chromium Developers mailing

Re: [chromium-dev] How can I remove .o objects in linux

2009-11-22 Thread Adam Langley
On Sun, Nov 22, 2009 at 1:23 PM, hap 497 hap...@gmail.com wrote: Can you please tell me how can I remove all .o after the build? I tried 'make clean', but it said there is no 'clean' target'. % find out -type f -name *.o | xargs rm AGL -- Chromium Developers mailing list:

Re: [chromium-dev] How can I remove .o objects in linux

2009-11-22 Thread Antoine Labour
On Sun, Nov 22, 2009 at 1:35 PM, Adam Langley a...@chromium.org wrote: On Sun, Nov 22, 2009 at 1:23 PM, hap 497 hap...@gmail.com wrote: Can you please tell me how can I remove all .o after the build? I tried 'make clean', but it said there is no 'clean' target'. % find out -type f -name

Re: [chromium-dev] How can I remove .o objects in linux

2009-11-22 Thread Evan Martin
On Sun, Nov 22, 2009 at 1:43 PM, Antoine Labour pi...@google.com wrote: On Sun, Nov 22, 2009 at 1:35 PM, Adam Langley a...@chromium.org wrote: On Sun, Nov 22, 2009 at 1:23 PM, hap 497 hap...@gmail.com wrote: Can you please tell me how can I remove all .o after the build? I tried 'make