View Single Post
  #3   (View Single Post)  
Old 21st June 2008
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

If you built userland properly, all the object files are in /usr/obj, which can also be cleared completely:

# rm -rf /usr/obj/*

Some small savings can also be had by clearing your kernel build of object files also. Here's an example with GENERIC,
if you built GENERIC.MP or you have custom kernels, do the same there:

# cd /usr/src/sys/arch/<arch>/compile/GENERIC
# make clean
Reply With Quote