summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjoeyh <joeyh>2006-03-03 22:26:20 +0000
committerjoeyh <joeyh>2006-03-03 22:26:20 +0000
commitd8e27a6d4d287995a554f27605e912be38d0a75b (patch)
tree2f53a3af8babc5c1543736608c463cb35cd5cffc /Makefile
parentee3eecafa0cc1a4efa0503117144205bedbdf6a1 (diff)
downloadmoreutils-d8e27a6d4d287995a554f27605e912be38d0a75b.tar.gz
* Switch sponge to a C implementation by mithandir.
* Build dep on docbook-xml.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index cf5c6b1..dddb950 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-BINS=isutf8
-PERLSCRIPTS=sponge vidir vipe ts
-MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1
+BINS=isutf8 sponge
+PERLSCRIPTS=vidir vipe ts
+MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 sponge.1
CFLAGS=-O2 -g -Wall
all: $(BINS) $(MANS)
@@ -22,5 +22,8 @@ check: isutf8
isutf8.1: isutf8.docbook
docbook2x-man isutf8.docbook
+sponge.1: sponge.docbook
+ docbook2x-man sponge.docbook
+
%.1: %
pod2man --center=" " --release="moreutils" $< > $@;