Makefile.am 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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_pdf = $(images:.png=.pdf)
  36. images_eps = $(images:.png=.eps)
  37. EXTRA_DIST = $(images)
  38. CLEANFILES = $(images_pdf) $(images_eps)
  39. info_TEXINFOS = scute.texi
  40. scute_TEXINFOS = gpl.texi
  41. scute.dvi: $(images_eps)
  42. scute.pdf: $(images_pdf)
  43. %.eps : %.png
  44. $(CONVERT) -resize 50% `test -f '$<' || echo '$(srcdir)/'`$< $@
  45. %.pdf : %.eps
  46. $(EPSTOPDF) `test -f '$<' || echo '$(srcdir)/'`$< --outfile=$@