summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-07-02 15:16:26 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-07-02 15:16:26 -0400
commit2cf23588d768fa8b632d80354cb8501a97426af0 (patch)
tree47a660a62c4fd7cd4a6b442bce7f87fb723990fa /Makefile
parente608a0284a84bb37a5a621eae72b0a456ec5484b (diff)
downloadmoreutils-2cf23588d768fa8b632d80354cb8501a97426af0.tar.gz
parallel: New program, contributed by Tollef Fog Heen, that can run multiple jobs in parallel, optionally checking load average.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index be51ab3..377121d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
BINS=isutf8 ifdata ifne pee sponge mispipe lckdo parallel
PERLSCRIPTS=vidir vipe ts combine zrun
-MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 mispipe.1 lckdo.1
+MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 mispipe.1 lckdo.1 parallel.1
CFLAGS=-O2 -g -Wall
INSTALL_BIN?=install -s
PREFIX=/usr
@@ -44,5 +44,8 @@ mispipe.1: mispipe.docbook
lckdo.1: lckdo.docbook
$(DOCBOOK2XMAN) $<
+parallel.1: parallel.docbook
+ $(DOCBOOK2XMAN) $<
+
%.1: %
pod2man --center=" " --release="moreutils" $< > $@;