Subject: Re: compiling programs
To: Glenn Johnson <gjohnson@nola.srrc.usda.gov>
From: Bill Studenmund <wrstuden@loki.stanford.edu>
List: port-mac68k
Date: 09/20/1996 13:30:04
> 
> I would like to compile applications for my NetBSD/Mac68K setup, mostly =
> X windows applications. I have very limited disk space however and would =
> like to know what I can safely delete after I have run make, make =
> install, and make install.man for an application. Are all of the =
> binaries moved to directories outside of the directory tree where the =
> source code resides? I understand that this can vary depending on the =
> application but any generalizations would be helpful. Thanks in advance.

Typically "make clean" will do what you want. It typically will delete
everything you added to the compile directory (like all the compile
files; the .o files). It won't touch the installed files.

Generally you'd do something like

make
make install
make clean

Take care,

Bill