diff options
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 |