tools-make/Instance
Nicola Pero aec6bd0d0e Reviewed, optimized and simplified make clean and distclean; tidied up the rpm building; removed obsolete stlocaltz.sh file
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@23480 72102866-910b-0410-8b05-ffd578937521
2006-09-13 04:01:28 +00:00
..
Documentation * Update FSF Address. 2005-05-22 03:20:14 +00:00
Shared * Update FSF Address. 2005-05-22 03:20:14 +00:00
application.make Standardized all libraries to have the same name, and removed which_lib 2006-09-08 11:19:09 +00:00
bundle.make Standardized all libraries to have the same name, and removed which_lib 2006-09-08 11:19:09 +00:00
clibrary.make * Update FSF Address. 2005-05-22 03:20:14 +00:00
ctool.make Standardized all libraries to have the same name, and removed which_lib 2006-09-08 11:19:09 +00:00
documentation.make * Update FSF Address. 2005-05-22 03:20:14 +00:00
framework.make Reviewed, optimized and simplified make clean and distclean; tidied up the rpm building; removed obsolete stlocaltz.sh file 2006-09-13 04:01:28 +00:00
gswapp.make Always use 'app' and 'gswa' as app extensions ... that is, use Gorm.app and drop Gorm.debug and Gorm.profile. Also, print a friendly message when openapp fails because . is not in PATH 2006-09-12 19:05:58 +00:00
gswbundle.make Standardized all libraries to have the same name, and removed which_lib 2006-09-08 11:19:09 +00:00
java-tool.make * Update FSF Address. 2005-05-22 03:20:14 +00:00
java.make * Update FSF Address. 2005-05-22 03:20:14 +00:00
library.make Removed LIBRARY_NAME_SUFFIX variable, no longer used 2006-09-08 11:24:35 +00:00
objc.make Standardized all libraries to have the same name, and removed which_lib 2006-09-08 11:19:09 +00:00
palette.make Standardized all libraries to have the same name, and removed which_lib 2006-09-08 11:19:09 +00:00
README New file - written in a rush but that's it 2002-01-30 21:01:43 +00:00
resource-set.make * Update FSF Address. 2005-05-22 03:20:14 +00:00
rules.make * Fixes for cygwin. 2005-10-07 02:39:08 +00:00
service.make Standardized all libraries to have the same name, and removed which_lib 2006-09-08 11:19:09 +00:00
subproject.make 2006-03-07 Jeremy Bettis <jeremy@deadbeef.com> 2006-03-07 20:21:29 +00:00
test-application.make * Update FSF Address. 2005-05-22 03:20:14 +00:00
test-library.make * Instance/test-library.make: Remove dejagnu code and replace 2005-06-10 21:22:28 +00:00
test-tool.make * Update FSF Address. 2005-05-22 03:20:14 +00:00
tool.make Standardized all libraries to have the same name, and removed which_lib 2006-09-08 11:19:09 +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.