blob: 7a629a8bdeac5c7a5b06f1f5dd8fe62eec237fa5 (
plain) (
tree)
|
|
prefix = /usr/local
BIN_DIR = $(prefix)/bin
LIB_DIR = $(prefix)/lib/w3m
DESTDIR =
distdir = ./distfiles
TARGETS = w3mman
LIB_TARGETS = w3mman2html.cgi
MKDIR = mkdir -p
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)
-$(MKDIR) $(DESTDIR)$(BIN_DIR)
-$(MKDIR) $(DESTDIR)$(LIB_DIR)
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
uninstall:
-for file in $(TARGETS); \
do \
rm -f $(BIN_DIR)/$$file; \
done
-for file in $(LIB_TARGETS); \
do \
rm -f $(LIB_DIR)/$$file; \
done
clean:
-rm -f $(TARGETS) $(LIB_TARGETS)
dist: all
@-rm -fr $(distdir)/w3mman
-$(MKDIR) $(distdir)/w3mman
cp Makefile README w3mman.in w3mman2html.cgi.in hlink.cgi $(distdir)/w3mman
( cd $(distdir); tar -cf - w3mman | GZIP='' gzip ) \
> $(distdir)/w3mman.tar.gz
-rm -fr $(distdir)/w3mman
|