summaryrefslogtreecommitdiff
path: root/Makefile
blob: 8f9db54f0831cdd86de5ee4134837277abcf8a71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 mispipe.1
CFLAGS=-O2 -g -Wall

all: $(BINS) $(MANS)

clean:
	rm -f $(BINS) $(MANS)

install:
	mkdir -p $(PREFIX)/usr/bin
	install -s $(BINS) $(PREFIX)/usr/bin
	install $(PERLSCRIPTS) $(PREFIX)/usr/bin
	
	mkdir -p $(PREFIX)/usr/share/man/man1
	install $(MANS) $(PREFIX)/usr/share/man/man1

check: isutf8
	./check-isutf8

isutf8.1: isutf8.docbook
	docbook2x-man $<

ifdata.1: ifdata.docbook
	docbook2x-man $<

pee.1: pee.docbook
	docbook2x-man $<

sponge.1: sponge.docbook
	docbook2x-man $<

mispipe.1: mispipe.docbook
	docbook2x-man $<

%.1: %
	pod2man --center=" " --release="moreutils" $< > $@;