aboutsummaryrefslogtreecommitdiffstats
path: root/help/Makefile.nmake
blob: d8d22178e776e3241df077935610fb337a4fc6ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
## 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