Changeset 212 for trunk

Show
Ignore:
Timestamp:
06/17/08 19:34:37 (5 months ago)
Author:
zany
Message:

clearing gnu-style implicit rules

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/doc/Makefile.am

    r185 r212  
    1111if BUILD_DOCS 
    1212 
    13 %.1: %.pod 
     13SUFFIXES = .1 .pod .1.html .1.txt 
     14 
     15.pod.1: 
    1416        pod2man --center "ObexFTP" --release `stat --format=%y $< | cut -f 1 -d " "` --section 1 $< $@ 
    1517#       txt2man -v "ObexFTP" -t "obexftp" -s 1 -r `date -I` \ 
    1618#       -I ObexFTP -I gObexFtp -I vfs-obexftp $< > $@ 
     19## and this one for BSD I guess... 
     20##      pod2man --center "ObexFTP" --release `stat -f %m $< | cut -f 1 -d " "` --section 1 $< $@ 
    1721 
    18 %.1.html: %.pod 
     22.pod.1.html: 
    1923        pod2html --title "ObexFTP" --infile=$< --outfile=$@ 
    2024 
    21 %.1.txt: %.pod 
     25.pod.1.txt: 
    2226        pod2text $< $@ 
    2327