forked from lix-project/lix
* Check for w3m.
This commit is contained in:
parent
7f384d9c1b
commit
d1d0271996
|
@ -1,6 +1,6 @@
|
||||||
SUBDIRS = externals src scripts corepkgs doc misc tests
|
SUBDIRS = externals src scripts corepkgs doc misc tests
|
||||||
EXTRA_DIST = substitute.mk nix.spec nix.spec.in bootstrap.sh \
|
EXTRA_DIST = substitute.mk nix.spec nix.spec.in bootstrap.sh \
|
||||||
svn-revision nix.conf.example
|
svn-revision nix.conf.example NEWS
|
||||||
|
|
||||||
include ./substitute.mk
|
include ./substitute.mk
|
||||||
|
|
||||||
|
@ -45,3 +45,8 @@ endif
|
||||||
|
|
||||||
svn-revision:
|
svn-revision:
|
||||||
svnversion . > svn-revision
|
svnversion . > svn-revision
|
||||||
|
|
||||||
|
all-local: NEWS
|
||||||
|
|
||||||
|
NEWS:
|
||||||
|
cp doc/manual/NEWS.txt NEWS
|
||||||
|
|
|
@ -82,6 +82,7 @@ NEED_PROG(bunzip2, bunzip2)
|
||||||
NEED_PROG(shell, sh)
|
NEED_PROG(shell, sh)
|
||||||
AC_PATH_PROG(xmllint, xmllint, false)
|
AC_PATH_PROG(xmllint, xmllint, false)
|
||||||
AC_PATH_PROG(xsltproc, xsltproc, false)
|
AC_PATH_PROG(xsltproc, xsltproc, false)
|
||||||
|
AC_PATH_PROG(w3m, w3m, false)
|
||||||
AC_PATH_PROG(flex, flex, false)
|
AC_PATH_PROG(flex, flex, false)
|
||||||
AC_PATH_PROG(bison, bison, false)
|
AC_PATH_PROG(bison, bison, false)
|
||||||
NEED_PROG(perl, perl)
|
NEED_PROG(perl, perl)
|
||||||
|
|
|
@ -51,7 +51,8 @@ NEWS.txt: release-notes.xml
|
||||||
$(XSLTPROC) --nonet --xinclude quote-literals.xsl release-notes.xml | \
|
$(XSLTPROC) --nonet --xinclude quote-literals.xsl release-notes.xml | \
|
||||||
$(XSLTPROC) --nonet --output $@.tmp.html $(NEWS_OPTS) \
|
$(XSLTPROC) --nonet --output $@.tmp.html $(NEWS_OPTS) \
|
||||||
$(docbookxsl)/html/docbook.xsl -
|
$(docbookxsl)/html/docbook.xsl -
|
||||||
w3m -dump $@.tmp.html > $@
|
$(w3m) -dump $@.tmp.html > $@
|
||||||
|
rm $@.tmp.html
|
||||||
|
|
||||||
|
|
||||||
all-local: manual.html NEWS.html NEWS.txt
|
all-local: manual.html NEWS.html NEWS.txt
|
||||||
|
@ -71,7 +72,7 @@ images:
|
||||||
cp $(docbookxsl)/images/callouts/*.png images/callouts
|
cp $(docbookxsl)/images/callouts/*.png images/callouts
|
||||||
chmod +w -R images
|
chmod +w -R images
|
||||||
|
|
||||||
KEEP = manual.html manual.is-valid version.txt $(MANS)
|
KEEP = manual.html manual.is-valid version.txt $(MANS) NEWS.html NEWS.txt
|
||||||
|
|
||||||
EXTRA_DIST = $(MANUAL_SRCS) $(FIGURES) $(KEEP)
|
EXTRA_DIST = $(MANUAL_SRCS) $(FIGURES) $(KEEP)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue