Fix CID 473 and 474.
[metze/wireshark/wip.git] / help / Makefile.nmake
1 ## Makefile for building wireshark.exe with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
3 #
4 # $Id$
5
6 TOOLS_DIR=..\tools
7 include ..\config.nmake
8
9 ############### no need to modify below this line #########
10
11 all: faq.txt
12
13 faq.txt: faq.py
14         $(PYTHON) faq.py | $(HTML2TXT) > $@
15
16 clean:
17         rm -rf faq.txt
18
19 distclean: clean
20
21 maintainer-clean: distclean
22