wireshark/help/Makefile.nmake
Gerald Combs c9c32db187 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
2008-12-17 21:11:20 +00:00

23 lines
368 B
Makefile

## Makefile for building wireshark.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id$
TOOLS_DIR=..\tools
include ..\config.nmake
############### no need to modify below this line #########
all: faq.txt
faq.txt: faq.py
$(PYTHON) faq.py | $(HTML2TXT) > $@
clean:
rm -rf faq.txt
distclean: clean
maintainer-clean: distclean