]> git.madduck.net Git - code/mailplate.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fix makefile default target
authormartin f. krafft <madduck@madduck.net>
Sun, 30 Sep 2007 17:54:27 +0000 (18:54 +0100)
committermartin f. krafft <madduck@madduck.net>
Sun, 7 Oct 2007 16:11:35 +0000 (17:11 +0100)
Makefile

index 14359b277c2cc4d80f1d0683b8a06f866242d09f..37a0fd75ea4043450277e975eb62b636ac279b11 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,14 @@
 DB2MAN=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl
 XP=xsltproc -''-nonet
 
+MANPAGE=mailplate.1
+
+all: $(MANPAGE)
+
 %.1: %.xml
        $(XP) $(DB2MAN) $<
 
-man: mailplate.1
+man: $(MANPAGE)
        man -l $<
 .PHONY: man