2
0

Makefile.inc 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ## Included by top-level Makefile for Automake.
  2. ## Copyright (C) 1995-2017 Free Software Foundation, Inc.
  3. ##
  4. ## This program is free software; you can redistribute it and/or modify
  5. ## it under the terms of the GNU General Public License as published by
  6. ## the Free Software Foundation; either version 2, or (at your option)
  7. ## any later version.
  8. ##
  9. ## This program is distributed in the hope that it will be useful,
  10. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ## GNU General Public License for more details.
  13. ##
  14. ## You should have received a copy of the GNU General Public License
  15. ## along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. ## ------------------------------ ##
  17. ## Automake-provided m4 macros. ##
  18. ## ------------------------------ ##
  19. system_acdir = @system_acdir@
  20. automake_acdir = @automake_acdir@
  21. dist_automake_ac_DATA = \
  22. %D%/amversion.m4 \
  23. %D%/ar-lib.m4 \
  24. %D%/as.m4 \
  25. %D%/auxdir.m4 \
  26. %D%/cond.m4 \
  27. %D%/cond-if.m4 \
  28. %D%/depend.m4 \
  29. %D%/depout.m4 \
  30. %D%/dmalloc.m4 \
  31. %D%/extra-recurs.m4 \
  32. %D%/gcj.m4 \
  33. %D%/init.m4 \
  34. %D%/install-sh.m4 \
  35. %D%/lead-dot.m4 \
  36. %D%/lex.m4 \
  37. %D%/lispdir.m4 \
  38. %D%/maintainer.m4 \
  39. %D%/make.m4 \
  40. %D%/missing.m4 \
  41. %D%/mkdirp.m4 \
  42. %D%/obsolete.m4 \
  43. %D%/options.m4 \
  44. %D%/python.m4 \
  45. %D%/prog-cc-c-o.m4 \
  46. %D%/runlog.m4 \
  47. %D%/sanity.m4 \
  48. %D%/silent.m4 \
  49. %D%/strip.m4 \
  50. %D%/substnot.m4 \
  51. %D%/tar.m4 \
  52. %D%/upc.m4 \
  53. %D%/vala.m4
  54. dist_system_ac_DATA = %D%/acdir/README
  55. automake_internal_acdir = $(automake_acdir)/internal
  56. dist_automake_internal_ac_DATA = %D%/internal/ac-config-macro-dirs.m4
  57. # We build amversion.m4 here, instead of from config.status,
  58. # because config.status is rerun each time one of configure's
  59. # dependencies change and amversion.m4 happens to be a configure
  60. # dependency. configure and amversion.m4 would be rebuilt in
  61. # loop otherwise.
  62. # Use '$(top_srcdir)' for the benefit of non-GNU makes: this is
  63. # how amversion.m4 appears in our dependencies.
  64. $(top_srcdir)/%D%/amversion.m4: $(srcdir)/configure.ac \
  65. $(srcdir)/%D%/amversion.in
  66. $(AM_V_at)rm -f $@-t $@
  67. $(AM_V_GEN)in=amversion.in \
  68. && $(do_subst) <$(srcdir)/%D%/amversion.in >$@-t
  69. $(generated_file_finalize)
  70. EXTRA_DIST += %D%/amversion.in
  71. # vim: ft=automake noet