Next: Files left in build directory after distclean, Previous: missing
and AM_MAINTAINER_MODE
, Up: Frequently Asked Questions about Automake [Contents][Index]
Developers are lazy. They often would like to use wildcards in Makefile.ams, so they don’t need to remember they have to update Makefile.ams every time they add, delete, or rename a file.
There are several objections to this:
cvs add
or cvs rm
anyway. Updating
Makefile.am accordingly quickly becomes a reflex.
Conversely, if your application doesn’t compile
because you forgot to add a file in Makefile.am, it will help
you remember to cvs add
it.
make dist
will complain. Besides, you don’t distribute
more than what you listed.
Still, these are philosophical objections, and as such you may disagree, or find enough value in wildcards to dismiss all of them. Before you start writing a patch against Automake to teach it about wildcards, let’s see the main technical issue: portability.
Although $(wildcard ...)
works with GNU make
, it is
not portable to other make
implementations.
The only way Automake could support $(wildcard ...)
is by
expending $(wildcard ...)
when automake
is run.
Resulting Makefile.ins would be portable since they would
list all files and not use $(wildcard ...)
. However that
means developers need to remember they must run automake
each
time they add, delete, or rename files.
Compared to editing Makefile.am, this is really little win. Sure,
it’s easier and faster to type automake; make
than to type
emacs Makefile.am; make
. But nobody bothered enough to write a
patch add support for this syntax. Some people use scripts to
generated file lists in Makefile.am or in separate
Makefile fragments.
Even if you don’t care about portability, and are tempted to use
$(wildcard ...)
anyway because you target only GNU Make, you
should know there are many places where Automake need to know exactly
which files should be processed. As Automake doesn’t know how to
expand $(wildcard ...)
, you cannot use it in these places.
$(wildcard ...)
is a black box comparable to AC_SUBST
ed
variables as far Automake is concerned.
You can get warnings about $(wildcard ...
) constructs using the
-Wportability
flag.