]> git.phdru.name Git - mimedecode.git/commitdiff
Sort rules by alphabetic order of the destinations
authorOleg Broytman <phd@phdru.name>
Thu, 30 Jan 2014 19:21:39 +0000 (23:21 +0400)
committerOleg Broytman <phd@phdru.name>
Thu, 30 Jan 2014 19:21:39 +0000 (23:21 +0400)
Makefile
Makefile.4xslt
Makefile.sgmlt
Makefile.xsltproc

index c4c2827a6fe462a19178755a0473a2c7866dfcd0..d748c00409cd6758f91229caddf1ed8485319ad6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ distr:
        ./mk-distr
 
 .PHONY: docs
-docs: mimedecode.man mimedecode.txt mimedecode.html
+docs: mimedecode.html mimedecode.man mimedecode.txt
 
 include Makefile.xsltproc
 
index cfdb9ee0d0e64f9593ed944ae370666536b05998..7650322c259cb57d7d215c21e3c2f2084b85f572 100644 (file)
@@ -3,9 +3,9 @@ DOCBOOK_XSL=/usr/share/xml/docbook/stylesheet/docbook-xsl
 mimedecode.html: mimedecode.docbook Makefile.4xslt
        4xslt $< $(DOCBOOK_XSL)/html/docbook.xsl >$@
 
-mimedecode.txt: mimedecode.html Makefile.4xslt
-       elinks -dump $< >$@
-
 mimedecode.man: mimedecode.docbook Makefile.4xslt
        4xslt $< $(DOCBOOK_XSL)/manpages/docbook.xsl
        mv mimedecode.py.1 $@
+
+mimedecode.txt: mimedecode.html Makefile.4xslt
+       elinks -dump $< >$@
index eedda06f0b55e09219c48f61d6b9b22911963f37..cadd36f806d55fcb2dbb6f43c5fc8481b244348d 100644 (file)
@@ -3,8 +3,8 @@ mimedecode.html: mimedecode.docbook Makefile.sgmlt
        mv mimedecode/mimedecode.py.html mimedecode.html
        rmdir mimedecode
 
-mimedecode.txt: mimedecode.docbook Makefile.sgmlt
-       sgmltools -b txt $<
-
 mimedecode.man: mimedecode.docbook Makefile.sgmlt
        docbook-to-man $< >$@
+
+mimedecode.txt: mimedecode.docbook Makefile.sgmlt
+       sgmltools -b txt $<
index 7b783625b77101c38b7f303ab752dfa2a58da6bd..f98e518eb865173e67a74f419978d88ae9e66135 100644 (file)
@@ -3,9 +3,9 @@ DOCBOOK_XSL=/usr/share/xml/docbook/stylesheet/docbook-xsl
 mimedecode.html: mimedecode.docbook Makefile.xsltproc
        xsltproc $(DOCBOOK_XSL)/html/docbook.xsl $< >$@
 
-mimedecode.txt: mimedecode.html Makefile.xsltproc
-       elinks -dump $< >$@
-
 mimedecode.man: mimedecode.docbook Makefile.xsltproc
        xsltproc $(DOCBOOK_XSL)/manpages/docbook.xsl $<
        mv mimedecode.py.1 $@
+
+mimedecode.txt: mimedecode.html Makefile.xsltproc
+       elinks -dump $< >$@