PageRenderTime 40ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/libs/perl/Choicetool/Makefile.am

#
Makefile | 71 lines | 37 code | 12 blank | 22 comment | 4 complexity | 4cbd73e12c5fb23f26dc8210961806a2 MD5 | raw file
Possible License(s): GPL-2.0
  1. ##
  2. ## Input file for automake
  3. ##
  4. ## Copyright (C) 2008, 2009 Francesco Salvestrini
  5. ##
  6. ## This program is free software; you can redistribute it and/or modify
  7. ## it under the terms of the GNU General Public License as published by
  8. ## the Free Software Foundation; either version 2 of the License, or
  9. ## (at your option) any later version.
  10. ##
  11. ## This program is distributed in the hope that it will be useful,
  12. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ## GNU General Public License for more details.
  15. ##
  16. ## You should have received a copy of the GNU General Public License along
  17. ## with this program; if not, write to the Free Software Foundation, Inc.,
  18. ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  19. ##
  20. include $(top_srcdir)/Makefile.sub
  21. SUBDIRS = \
  22. Base \
  23. OS \
  24. RC \
  25. Misc \
  26. Data \
  27. Widgets \
  28. Rules \
  29. Frontends
  30. perllibdir = $(pkgvlibsdir)/perl/Choicetool
  31. dist_perllib_DATA = \
  32. Compile.pm \
  33. Link.pm \
  34. Binder.pm
  35. nodist_perllib_DATA = \
  36. Autoconfig.pm
  37. CLEANFILES = $(nodist_perllib_DATA)
  38. DISTCLEANFILES =
  39. Autoconfig.pm: Makefile $(srcdir)/Autoconfig.pm.in
  40. ( rm -f $@ $@.tmp && \
  41. $(do_subst) < $(srcdir)/Autoconfig.pm.in > $@.tmp && \
  42. chmod a-w $@.tmp && \
  43. mv -f $@.tmp $@ ) || { \
  44. rm -f $@ $@.tmp ; \
  45. exit 1 ; \
  46. }
  47. EXTRA_DIST = \
  48. Autoconfig.pm.in
  49. ##
  50. ## Maintainer related targets
  51. ##
  52. update-local: Makefile
  53. maintainer-check-whitespaces: Makefile $(dist_perllib_DATA) $(nodist_perllib_DATA)
  54. $(WHITESPACE_DETECT) $(dist_perllib_DATA) $(nodist_perllib_DATA)
  55. maintainer-check-wordwraps: Makefile $(dist_perllib_DATA) $(nodist_perllib_DATA)
  56. $(WORDWRAP_DETECT) --tab-size 8 --columns 80 $(dist_perllib_DATA) $(nodist_perllib_DATA)
  57. maintainer-check-local: Makefile \
  58. maintainer-check-whitespaces \
  59. maintainer-check-wordwraps