summaryrefslogtreecommitdiff
path: root/m4/ax_add_recursive_am_macro_static.m4
Commit message (Collapse)AuthorAgeFilesLines
* switch gnu.org sites to httpsMike Frysinger2017-02-081-4/+4
|
* ALL: update web site URL to ↵Peter Simons2010-03-011-4/+4
| | | | http://www.gnu.org/software/autoconf-archive/MACRO-NAME.html
* Assigned all macros a unique serial number.Peter Simons2010-01-251-0/+2
| | | | | | | The serial number corresponds to the number of commits that have modified the macro in the Archive's Git repository. Refer to http://www.gnu.org/software/libtool//manual/automake/Serials.html to find out why these numbers are useful.
* Augmented the text of the all-permissive license by an express warranty ↵Peter Simons2010-01-051-1/+2
| | | | | | disclaimer. This has been suggested by the FSF on http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html.
* all: macro home pages now reside on savannah (but old links still work)Peter Simons2009-04-281-3/+3
|
* ALL: consistency edits (see NEWS)Peter Simons2009-04-261-5/+1
| | | | | | | | | | * Consistently refer to this project as Autoconf Archive. * Removed the LAST MODIFICATION section, because that information is redundant in the presence of Git. * COPYLEFT has been renamed to LICENSE: some licenses, like all-permissive, are no copylefts.
* consistency editsPeter Simons2009-04-201-5/+5
| | | | Cosmetic edits to update copyright headers and word-wrap documentation.
* AX_ADD_AM_MACRO_STATIC: Added a new macro and helpers.Allan Caffee2009-04-201-0/+50
This new macro adds some text to the file aminclude_static.am when *Autoconf* is run. The current macro AX_ADD_AM_MACRO writes text to the file `aminclude.am' when _configure_ is run. Unfortunately this means that a) the existing macro append Make code rather than Automake code as the name would imply and b) only works for implementations of Make which allow includes, BSD Make and GNU Make are the only ones that come to mind. Hopefully this new macro will eventually replace the existing one altogether because it allows Automake to do the actual work thereby offering more portable Makefiles and pushing logic out of configure conditionals and into AM_CONDITIONALs. However, in an attempt to avoid breaking existing Autoconf scripts those macros have been left unchanged for the time being.