diff options
author | joeyh <joeyh> | 2006-09-08 00:33:43 +0000 |
---|---|---|
committer | joeyh <joeyh> | 2006-09-08 00:33:43 +0000 |
commit | 7b6c6008e0e3f2a88c974cf8bea0545037626d2c (patch) | |
tree | f51ed58d764704a56c9da05c73508d0e90378c05 /Makefile | |
parent | 79881487962d274e73b475458b6a1847789ca562 (diff) | |
download | moreutils-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-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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" $< > $@; |