aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-12-13 03:13:38 +0000
committerBill Meier <wmeier@newsguy.com>2008-12-13 03:13:38 +0000
commit40fd3c770b7e95eb0e39d4801963f96c9066451e (patch)
treef8b69bc14f00b6ea3820d3783e0f97549acdb4d4
parent9dcdec852bc40d4d454d4c70bee66c3f74ed9e0a (diff)
Default target should create the faq.txt file (no delete it)
svn path=/trunk/; revision=26983
-rw-r--r--help/Makefile.nmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/help/Makefile.nmake b/help/Makefile.nmake
index cb45662122..e0c3df6e9f 100644
--- a/help/Makefile.nmake
+++ b/help/Makefile.nmake
@@ -7,6 +7,9 @@ include ..\config.nmake
############### no need to modify below this line #########
+faq.txt: faq.py
+ $(PYTHON) faq.py | lynx -dump -width=72 -nolist -stdin -force-html > $@
+
clean:
rm -rf faq.txt
@@ -14,5 +17,3 @@ distclean: clean
maintainer-clean: distclean
-faq.txt: faq.py
- $(PYTHON) faq.py | lynx -dump -width=72 -nolist -stdin -force-html > $@