Makefile.inc 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. ## Private perl modules used by automake and aclocal. ##
  18. ## ---------------------------------------------------- ##
  19. perllibdir = $(pkgvdatadir)/Automake
  20. dist_perllib_DATA = \
  21. %D%/ChannelDefs.pm \
  22. %D%/Channels.pm \
  23. %D%/Condition.pm \
  24. %D%/Configure_ac.pm \
  25. %D%/DisjConditions.pm \
  26. %D%/FileUtils.pm \
  27. %D%/General.pm \
  28. %D%/Getopt.pm \
  29. %D%/Item.pm \
  30. %D%/ItemDef.pm \
  31. %D%/Language.pm \
  32. %D%/Location.pm \
  33. %D%/Options.pm \
  34. %D%/Rule.pm \
  35. %D%/RuleDef.pm \
  36. %D%/Variable.pm \
  37. %D%/VarDef.pm \
  38. %D%/Version.pm \
  39. %D%/XFile.pm \
  40. %D%/Wrap.pm
  41. nodist_perllib_DATA = %D%/Config.pm
  42. CLEANFILES += $(nodist_perllib_DATA)
  43. %D%/Config.pm: %D%/Config.in Makefile
  44. $(AM_V_at)rm -f $@ $@-t
  45. $(AM_V_at)$(MKDIR_P) %D%
  46. $(AM_V_GEN)in=Config.in \
  47. && $(do_subst) <$(srcdir)/%D%/Config.in >$@-t
  48. $(generated_file_finalize)
  49. EXTRA_DIST += %D%/Config.in
  50. # vim: ft=automake noet