blob: 613d5615ab5699ebf17b965f7ddc3caeaad60b8e (
plain) (
blame)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
prefix = /usr/local
BIN_DIR = $(prefix)/bin
LIB_DIR = $(prefix)/lib/w3m
DESTDIR =
distdir = ./distfiles
TARGETS = w3mman
LIB_TARGETS = w3mman2html.cgi
INSTALL = install -c
INSTALL_SCRIPT = $(INSTALL) -m 755
PERL = /usr/local/bin/perl
W3M = w3m
# W3M = w3m -X -o confirm_qq=0
MAN = man
.SUFFIXES: .in
all: $(TARGETS) $(LIB_TARGETS)
.in:
sed -e 's%@PERL@%$(PERL)%g' \
-e 's%@W3M@%$(W3M)%g' \
-e 's%@MAN@%$(MAN)%g' \
$< > $@
chmod +x $@
install: $(TARGETS) $(LIB_TARGETS)
for file in $(TARGETS); \
do \
$(INSTALL_SCRIPT) $$file $(DESTDIR)$(BIN_DIR); \
done
for file in $(LIB_TARGETS); \
do \
$(INSTALL_SCRIPT) $$file $(DESTDIR)$(LIB_DIR); \
done
clean:
rm -f $(TARGETS) $(LIB_TARGETS)
dist: all
@-rm -fr $(distdir)/w3mman
mkdir -p $(distdir)/w3mman
cp Makefile README w3mman w3mman.in \
w3mman2html.cgi w3mman2html.cgi.in hlink.cgi \
$(distdir)/w3mman
( cd $(distdir); \
tar -cf - w3mman | GZIP='' gzip ) \
> $(distdir)/w3mman.tar.gz
-rm -fr $(distdir)/w3mman
|