home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / lzop-1.00.tar.gz / lzop-1.00.tar / lzop-1.00 / doc / Makefile.am < prev    next >
Makefile  |  1998-04-27  |  619b  |  40 lines

  1. ## Process this file with automake to produce Makefile.in
  2.  
  3. AUTOMAKE_OPTIONS = no-dependencies
  4.  
  5. SUFFIXES = .1 .html .man .pod .ps .tex .texi .txt
  6.  
  7. man_MANS = lzop.1
  8.  
  9. BUILT_SOURCES = lzop.1 lzop.html lzop.man lzop.ps lzop.tex lzop.txt
  10.  
  11. EXTRA_DIST = lzop.pod magic $(BUILT_SOURCES)
  12.  
  13. CLEANFILES = @CLEANFILES@ pod*cache
  14.  
  15.  
  16. all-local: $(BUILT_SOURCES)
  17.  
  18. doc-clean:
  19.     -rm -f $(BUILT_SOURCES)
  20.  
  21.  
  22. .pod.1:
  23.     pod2man --center=" " --release="lzop 1.00" --date="1998-04-27" $< > $@
  24.  
  25. .pod.html:
  26.     pod2html --noindex $< > $@
  27.  
  28. .pod.tex:
  29.     pod2latex $<
  30.  
  31. .pod.txt:
  32.     pod2text < $< > $@
  33.  
  34. .1.man:
  35.     nroff -man $< > $@
  36.  
  37. .1.ps:
  38.     groff -man $< > $@
  39.  
  40.