tools-make/Instance
Nicola Pero 76d3c97faa Define here PALETTE_ICON and tidied up definition of PALETTE_INSTALL_DIR
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12836 72102866-910b-0410-8b05-ffd578937521
2002-02-27 16:40:09 +00:00
..
Shared Removed last ugly API with xxx_EMPTY_HEADER_FILES_INSTALL_DIR; added comments 2002-02-21 14:39:34 +00:00
application.make Define APPLICATION_ICON here 2002-02-22 12:06:24 +00:00
bundle.make Do not protect against multiple inclusions 2002-02-09 15:13:19 +00:00
clibrary.make Inherit all makefile code from library.make not that it is finally possible! 2002-02-20 17:02:27 +00:00
ctool.make Fixed typo - was not using GNUSTEP_INSTANCE in a place 2002-02-22 13:13:21 +00:00
documentation.make Fixed ingenuity in the way xxx_INSTALL_FILES were installed 2002-02-22 15:54:36 +00:00
framework.make framework.make broken into Master and Instance 2002-02-27 16:27:08 +00:00
gswapp.make Set some project-type specific variables here rather than assuming Master/rules.make will build them for us 2002-02-22 11:59:01 +00:00
gswbundle.make Set some project-type specific variables here rather than assuming Master/rules.make will build them for us 2002-02-22 11:59:01 +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 No need to set HEADER_FILES_DIR here, it's done automatically by 2002-02-22 11:57:46 +00:00
objc.make New file extracted from top-level objc.make 2002-02-22 00:53:48 +00:00
palette.make Define here PALETTE_ICON and tidied up definition of PALETTE_INSTALL_DIR 2002-02-27 16:40:09 +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
service.make Extracted from top-level service.make 2002-02-22 13:15:51 +00:00
test-application.make Use test-app, not testapp, as GNUSTEP_TYPE for test-application 2002-02-22 12:36:41 +00:00
test-library.make Updated to use GNUSTEP_INSTANCE 2002-02-22 13:12:00 +00:00
test-tool.make Broken into Master and Instace 2002-02-22 12:49:08 +00:00
tool.make Updated to use GNUSTEP_INSTANCE 2002-02-22 13:12:00 +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.