From xemacs-m  Fri Feb 14 22:48:53 1997
Received: from venus.Sun.COM (venus.Sun.COM [192.9.25.5])
	by xemacs.org (8.8.5/8.8.5) with SMTP id WAA28046
	for <xemacs-beta@xemacs.org>; Fri, 14 Feb 1997 22:48:52 -0600 (CST)
Received: from Eng.Sun.COM ([129.146.1.25]) by venus.Sun.COM (SMI-8.6/mail.byaddr) with SMTP id UAA04703; Fri, 14 Feb 1997 20:48:22 -0800
Received: from kindra.eng.sun.com by Eng.Sun.COM (SMI-8.6/SMI-5.3)
	id UAA09936; Fri, 14 Feb 1997 20:48:19 -0800
Received: from xemacs.eng.sun.com by kindra.eng.sun.com (SMI-8.6/SMI-SVR4)
	id UAA03232; Fri, 14 Feb 1997 20:48:18 -0800
Received: by xemacs.eng.sun.com (SMI-8.6/SMI-SVR4)
	id UAA15056; Fri, 14 Feb 1997 20:48:16 -0800
Date: Fri, 14 Feb 1997 20:48:16 -0800
Message-Id: <199702150448.UAA15056@xemacs.eng.sun.com>
From: Martin Buchholz <mrb@Eng.Sun.COM>
To: acs@acm.org
Cc: xemacs-beta@xemacs.org
Subject: Re: Multiple Architectures 
In-Reply-To: <199702150139.UAA29132@spacely.icd.teradyne.com>
References: <199702150113.RAA15257@lungo>
	<199702150139.UAA29132@spacely.icd.teradyne.com>
Reply-To: Martin Buchholz <mrb@Eng.Sun.COM>
Mime-Version: 1.0 (generated by tm-edit 7.100)
Content-Type: text/plain; charset=US-ASCII

>>>>> "Vinnie" == Vinnie Shelton <shelton@icd.teradyne.com> writes:

Vinnie> Martin, I'm still disappointed that I don't end up with all the binaries 
Vinnie> in one place *unless I do a 'make install'*, which is a very long process, 
Vinnie> and chews up disk space.

OK. I'm starting to see what you mean.  You ought to be able to do
something like
make install-arch-dep prefix=$srcdir
and have the result be runnable.

Maybe you want a new target

make install-into-srcdir?

Or given the current capability of being able to build in mutiple
separate build trees, perhaps you just want to delete all the
intermediate files which are useless at run time, i.e. the .o files.

Maybe

make clean-intermediate

is what you want, which would just run

find -name '*.o' | xargs -t rm

Martin

