|
|
|
@ -147,6 +147,7 @@ GENERATED FILES |
|
|
|
|
* src/makefile.am - if you enabled AX_USE_CXX |
|
|
|
|
* src/version.hxx - if you enabled AX_USE_CXX |
|
|
|
|
* src/version.cxx - if you enabled AX_USE_CXX |
|
|
|
|
* etc/makefile.am - if you enable AX_USE_ETC |
|
|
|
|
* html/makefile.am - if you enabled AX_BUILD_HTML |
|
|
|
|
* scripts/makefile.am - if you enabled AX_USE_SCRIPTS |
|
|
|
|
* nodejs/makefile.am - if you add AX_USE_NODEJS |
|
|
|
@ -256,6 +257,7 @@ FILES |
|
|
|
|
number. In git, git rev-list --all --count is used. |
|
|
|
|
The following macros are supported in configure.ac: |
|
|
|
|
* Enable C++: AX_USE_CXX |
|
|
|
|
* Enable system config files in /etc: AX_USE_ETC |
|
|
|
|
* Enable LibTool library creation: AX_USE_LIBTOOL |
|
|
|
|
* Enable Scripts: AX_USE_SCRIPTS |
|
|
|
|
* Enable NodeJS project: AX_USE_NODEJS |
|
|
|
@ -569,6 +571,7 @@ AX_INIT_STANDARD_PROJECT |
|
|
|
|
|
|
|
|
|
# requirements, uncomment, what you need: |
|
|
|
|
#AX_USE_CXX |
|
|
|
|
#AX_USE_ETC |
|
|
|
|
#AX_USE_LIBTOOL |
|
|
|
|
#AX_USE_SCRIPTS |
|
|
|
|
#AX_USE_NODEJS |
|
|
|
@ -859,6 +862,13 @@ namespace NAMESPACE { |
|
|
|
|
const std::string IDENT("\$Id: " PACKAGE_STRING); |
|
|
|
|
} |
|
|
|
|
EOF |
|
|
|
|
to --condition AX_USE_ETC etc/makefile.am <<EOF |
|
|
|
|
${HEADER}pkgsysconfdir = \${sysconfdir}/@PACKAGE_NAME@ |
|
|
|
|
|
|
|
|
|
dist_pkgsysconf_DATA = |
|
|
|
|
|
|
|
|
|
MAINTAINERCLEANFILES = makefile.in |
|
|
|
|
EOF |
|
|
|
|
to --condition AX_USE_SCRIPTS scripts/makefile.am <<EOF |
|
|
|
|
${HEADER}dist_bin_SCRIPTS = |
|
|
|
|
|
|
|
|
@ -1680,6 +1690,9 @@ SUBDIRS="" |
|
|
|
|
if testtag AX_USE_CXX; then |
|
|
|
|
SUBDIRS="${SUBDIRS} src" |
|
|
|
|
fi |
|
|
|
|
if testtag AX_USE_ETC; then |
|
|
|
|
SUBDIRS="${SUBDIRS} etc" |
|
|
|
|
fi |
|
|
|
|
if testtag AX_BUILD_TEST AX_USE_CPPUNIT; then |
|
|
|
|
SUBDIRS="${SUBDIRS} test" |
|
|
|
|
fi |
|
|
|
|