Try to get the FAQ targets working on Windows. Add lynx to the list of

required tools.

svn path=/trunk/; revision=26982
This commit is contained in:
Gerald Combs 2008-12-13 02:59:42 +00:00
parent 6906e79600
commit 9dcdec852b
2 changed files with 12 additions and 0 deletions

View File

@ -644,6 +644,13 @@ doxygen-run:
doxygen: doxygen.cfg doxygen-run
FAQ: help\faq.txt help\faq.py
cd help
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake faq.txt
cp faq.txt ..\FAQ
cd ..
################################################################################
# Prepare build environment by downloading and installing required libraries
################################################################################
@ -664,6 +671,7 @@ REQUIRED_TOOLS=\
$(YACC) \
$(LEX) \
env \
lynx \
grep \
/usr/bin/find \
$(PERL) \

View File

@ -8,7 +8,11 @@ include ..\config.nmake
############### no need to modify below this line #########
clean:
rm -rf faq.txt
distclean: clean
maintainer-clean: distclean
faq.txt: faq.py
$(PYTHON) faq.py | lynx -dump -width=72 -nolist -stdin -force-html > $@