aboutsummaryrefslogtreecommitdiffstats
path: root/help/Makefile.nmake
blob: 3eee3bcee7255c358e40044de8bfe1cb6325c6ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
## Makefile for building wireshark.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#

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