Makefile.am 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Makefile.am - Doc directory Makefile for scute.
  2. # Copyright (C) 2006, 2007 g10 Code GmbH
  3. #
  4. # This file is part of scute.
  5. #
  6. # Scute is free software; you can redistribute it and/or modify it
  7. # 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. # Scute is distributed in the hope that it will be useful, but
  12. # WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. # General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with Scute; if not, write to the Free Software Foundation,
  18. # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. #
  20. # In addition, as a special exception, g10 Code GmbH gives permission
  21. # to link this library: with the Mozilla Foundation's code for
  22. # Mozilla (or with modified versions of it that use the same license
  23. # as the "Mozilla" code), and distribute the linked executables. You
  24. # must obey the GNU General Public License in all respects for all of
  25. # the code used other than "Mozilla". If you modify this file, you
  26. # may extend this exception to your version of the file, but you are
  27. # not obligated to do so. If you do not wish to do so, delete this
  28. # exception statement from your version.
  29. ## Process this file with automake to produce Makefile.in
  30. DISTCLEANFILES = scute.tmp
  31. images = firefox-cm.png firefox-cm-view-detail.png firefox-cm-view.png \
  32. firefox-dm-load-after.png firefox-dm-load-before.png \
  33. firefox-dm-load.png firefox-dm-token-present.png firefox-pref.png \
  34. firefox-pref-view.png
  35. images_eps = $(images:.png=.eps)
  36. EXTRA_DIST = $(images)
  37. CLEANFILES = $(images_eps)
  38. info_TEXINFOS = scute.texi
  39. scute_TEXINFOS = gpl.texi
  40. scute.html: scute.texi $(foreach i,$(images),scute.html/$(i))
  41. $(MAKEINFO) --html --output "$@" "$<"
  42. scute.html/%.png: %.png
  43. @mkdir -p scute.html
  44. cp -v "$<" "$@"
  45. scute.dvi: $(images_eps)
  46. scute.pdf: $(images)
  47. %.eps : %.png
  48. $(CONVERT) `test -f '$<' || echo '$(srcdir)/'`$< $@