diff options
author | Gerald Combs <gerald@wireshark.org> | 2008-12-17 21:11:20 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2008-12-17 21:11:20 +0000 |
commit | c9c32db1870e604415aefd8e34e6efa23f5cf4b8 (patch) | |
tree | 8b3cdd94fcd2799f6c9766d548adde79826c07fd /help | |
parent | f49377e0e7be6ef7d30ff1dfe685b079ef06249f (diff) | |
download | wireshark-c9c32db1870e604415aefd8e34e6efa23f5cf4b8.tar.gz wireshark-c9c32db1870e604415aefd8e34e6efa23f5cf4b8.tar.bz2 wireshark-c9c32db1870e604415aefd8e34e6efa23f5cf4b8.zip |
Remove lynx as a dependency on Windows. By default, create the FAQ using
html2text.py. You can override this by adjusting config.nmake or by setting
HTML2TXT.
svn path=/trunk/; revision=27041
Diffstat (limited to 'help')
-rw-r--r-- | help/Makefile.nmake | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/help/Makefile.nmake b/help/Makefile.nmake index e0c3df6e9f..d8d22178e7 100644 --- a/help/Makefile.nmake +++ b/help/Makefile.nmake @@ -3,12 +3,15 @@ # # $Id$ +TOOLS_DIR=..\tools include ..\config.nmake ############### no need to modify below this line ######### +all: faq.txt + faq.txt: faq.py - $(PYTHON) faq.py | lynx -dump -width=72 -nolist -stdin -force-html > $@ + $(PYTHON) faq.py | $(HTML2TXT) > $@ clean: rm -rf faq.txt |