Default target should create the faq.txt file (no delete it)

svn path=/trunk/; revision=26983
This commit is contained in:
Bill Meier 2008-12-13 03:13:38 +00:00
parent 9dcdec852b
commit 40fd3c770b
1 changed files with 3 additions and 2 deletions

View File

@ -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 > $@