Go to the first, previous, next, last section, table of contents.
Automake supports an include
directive which can be used to
include other `Makefile' fragments when automake
is run.
Note that these fragments are read and interpreted by automake
,
not by make
. As with conditionals, make
has no idea that
include
is in use.
There are two forms of include
:
include $(srcdir)/file
include $(top_srcdir)/file
Note that if a fragment is included inside a conditional, then the condition applies to the entire contents of that fragment.
Go to the first, previous, next, last section, table of contents.