Automake
- Makefile.am
item | decsription | examples |
---|---|---|
EXTRA_DIST | it tells automake that the the list is part of the distribution and must be included when you do make dist | EXTRA_DIST=file |
SUBDIRS | simply say which subdirectories to recurse into for more Makefiles and the recursive is depth-first; you can put ‘.’ into ‘SUBDIRS’ to control when the objects in the current directory are built, relative to the objects in the subdirectories. | SUBDIRS=src |
DIST_SUBDIRS | It is used in rules that need to recurse in all directories, even those that have been conditionally left out of the build. If SUBDIRS is defined conditionally using Automake conditionals, Automake will define DIST_SUBDIRS automatically from the possible values of SUBDIRS in all conditions. |
page revision: 77, last edited: 29 Oct 2010 10:59