tools-make/Instance
Adam Fedor 7855dfe007 * Instance/Documentation/texi.make: Install html chapters as well
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@33913 72102866-910b-0410-8b05-ffd578937521
2011-09-29 23:39:40 +00:00
..
Documentation * Instance/Documentation/texi.make: Install html chapters as well 2011-09-29 23:39:40 +00:00
Shared Fixes and improvements to 'make strings'; small cleanup of some other instance makefiles 2010-08-21 09:20:40 +00:00
application.make Make .desktop files executable 2011-04-08 17:48:15 +00:00
bundle.make Implemented new 'make internalmessages=yes' option which prints all recursive make invocations. Never print them (uninteresting/annoying for users) unless internalmessages=yes is used 2010-02-14 23:13:47 +00:00
clibrary.make Added mode comment for emacs 2010-02-12 08:43:42 +00:00
ctool.make Implemented new 'make internalmessages=yes' option which prints all recursive make invocations. Never print them (uninteresting/annoying for users) unless internalmessages=yes is used 2010-02-14 23:13:47 +00:00
documentation.make Fixed cleaning texi targets. Moved textdoc targets to texi.make where they are used 2009-09-19 08:25:10 +00:00
framework.make Make -make not generate a file that contains an implicit cast that is not permitted by ARC. 2011-06-29 17:07:06 +00:00
gswapp.make Removed two obsolete variables after 4 years of deprecation 2011-03-14 10:50:08 +00:00
gswbundle.make Fixes and improvements to 'make strings'; small cleanup of some other instance makefiles 2010-08-21 09:20:40 +00:00
java-tool.make Update license to GPL 3 2007-10-30 14:18:41 +00:00
java.make Fixed indendation of one line 2009-10-07 22:05:55 +00:00
library.make Change naming convention for versioned dynamic library files on 2011-04-30 07:59:20 +00:00
objc.make Implemented new 'make internalmessages=yes' option which prints all recursive make invocations. Never print them (uninteresting/annoying for users) unless internalmessages=yes is used 2010-02-14 23:13:47 +00:00
palette.make Implemented new 'make internalmessages=yes' option which prints all recursive make invocations. Never print them (uninteresting/annoying for users) unless internalmessages=yes is used 2010-02-14 23:13:47 +00:00
README New file - written in a rush but that's it 2002-01-30 21:01:43 +00:00
resource-set.make Removed two obsolete variables after 4 years of deprecation 2011-03-14 10:50:08 +00:00
rules.make Fixes and improvements to 'make strings'; small cleanup of some other instance makefiles 2010-08-21 09:20:40 +00:00
service.make Implemented new 'make internalmessages=yes' option which prints all recursive make invocations. Never print them (uninteresting/annoying for users) unless internalmessages=yes is used 2010-02-14 23:13:47 +00:00
subproject.make Implemented new 'make internalmessages=yes' option which prints all recursive make invocations. Never print them (uninteresting/annoying for users) unless internalmessages=yes is used 2010-02-14 23:13:47 +00:00
test-application.make Fixed bug where test-application.make did not link against GUI by default 2008-07-21 17:06:36 +00:00
test-library.make Added mode comment for emacs 2010-02-12 08:43:42 +00:00
test-tool.make Fixed bug where test-application.make did not link against GUI by default 2008-07-21 17:06:36 +00:00
tool.make Implemented new 'make internalmessages=yes' option which prints all recursive make invocations. Never print them (uninteresting/annoying for users) unless internalmessages=yes is used 2010-02-14 23:13:47 +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.