tools-make/Instance
Nicola Pero d0cb122d18 New file extracted from top-level library.make
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12592 72102866-910b-0410-8b05-ffd578937521
2002-02-20 16:18:30 +00:00
..
Shared Tidied comment 2002-02-12 18:38:39 +00:00
application.make Do not protect against multiple inclusions 2002-02-09 15:13:19 +00:00
bundle.make Do not protect against multiple inclusions 2002-02-09 15:13:19 +00:00
clibrary.make Extracted from top-level clibrary.make 2002-02-20 15:36:06 +00:00
ctool.make New file from top-level ctool.make; minor tidyups 2002-02-20 13:11:40 +00:00
java-tool.make Do not protect against multiple inclusions 2002-02-09 15:13:19 +00:00
java.make Do not protect against multiple inclusions 2002-02-09 15:13:19 +00:00
library.make New file extracted from top-level library.make 2002-02-20 16:18:30 +00:00
README New file - written in a rush but that's it 2002-01-30 21:01:43 +00:00
rules.make Do not protect against multiple inclusions 2002-02-09 15:13:19 +00:00

Makefiles in this directory are only used during the 'Instance' make
invocation.  The 'Master' invocation (see explanation in
Master/README) decides which tasks are to be done; for each of them,
it calls a recursive make invocation (called an 'Instance' make
invocation), setting GNUSTEP_INSTANCE to the instance name (for
example, 'defaults'), and GNUSTEP_TYPE to the type of instance type
(for example, 'tool').  The make target to build is as in
internal-tool-all.

This means that all makefiles in this directory are executed with a
well defined GNUSTEP_INSTANCE, GNUSTEP_TYPE, and target.

It is safe/required in all these makefiles/makefile fragments to
access the variables needed to build the target for this instance by
using $($(GNUSTEP_INSTANCE)_VARIABLE).  For example, the list of
OBJC_FILES needed to compile the `defaults' instance will have been
defined by the user in the defaults_OBJC_FILES variable.  In this
directory, we access this list using
$($(GNUSTEP_INSTANCE)_OBJC_FILES).

Please note that this makefiles/makefile fragments can't be included
in the Master invocation, they are actually useless in the Master
invocation, because $(GNUSTEP_INSTANCE) is undefined in that case.