summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjoeyh <joeyh>2006-09-08 00:33:43 +0000
committerjoeyh <joeyh>2006-09-08 00:33:43 +0000
commit7b6c6008e0e3f2a88c974cf8bea0545037626d2c (patch)
treef51ed58d764704a56c9da05c73508d0e90378c05 /Makefile
parent79881487962d274e73b475458b6a1847789ca562 (diff)
downloadmoreutils-7b6c6008e0e3f2a88c974cf8bea0545037626d2c.tar.gz
* Add mispipe, contributed by Nathanael Nerode. Pipes together two commands,
returning the exit status of the first.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e8d92ee..8f9db54 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-BINS=isutf8 ifdata pee sponge
+BINS=isutf8 ifdata pee sponge mispipe
PERLSCRIPTS=vidir vipe ts combine zrun
-MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 pee.1 zrun.1
+MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 pee.1 zrun.1 mispipe.1
CFLAGS=-O2 -g -Wall
all: $(BINS) $(MANS)
@@ -31,5 +31,8 @@ pee.1: pee.docbook
sponge.1: sponge.docbook
docbook2x-man $<
+mispipe.1: mispipe.docbook
+ docbook2x-man $<
+
%.1: %
pod2man --center=" " --release="moreutils" $< > $@;