ax_add_am_macro_static.m4 853 B

12345678910111213141516171819202122232425262728
  1. # ===========================================================================
  2. # https://www.gnu.org/software/autoconf-archive/ax_add_am_macro_static.html
  3. # ===========================================================================
  4. #
  5. # SYNOPSIS
  6. #
  7. # AX_ADD_AM_MACRO_STATIC([RULE])
  8. #
  9. # DESCRIPTION
  10. #
  11. # Adds the specified rule to $AMINCLUDE.
  12. #
  13. # LICENSE
  14. #
  15. # Copyright (c) 2009 Tom Howard <tomhoward@users.sf.net>
  16. # Copyright (c) 2009 Allan Caffee <allan.caffee@gmail.com>
  17. #
  18. # Copying and distribution of this file, with or without modification, are
  19. # permitted in any medium without royalty provided the copyright notice
  20. # and this notice are preserved. This file is offered as-is, without any
  21. # warranty.
  22. #serial 8
  23. AC_DEFUN([AX_ADD_AM_MACRO_STATIC],[
  24. AC_REQUIRE([AX_AM_MACROS_STATIC])
  25. AX_AC_APPEND_TO_FILE(AMINCLUDE_STATIC,[$1])
  26. ])