wireshark/help/Makefile.nmake

22 lines
388 B
Makefile

## 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 -b | $(PYTHON) $(TOOLS_DIR)\html2text.py > $@
clean:
rm -rf faq.txt
distclean: clean
maintainer-clean: distclean