wireshark/help/Makefile.nmake
Alexis La Goutte 757aa33220 Continue to remove $Id$ from top of file
(Using sed : sed -i '/^\# \$Id\$/,+1 d') (start with dash)

Change-Id: Ia4b5a6c2302f6a531f6a86c1ec3a2f8205c8c2dd
Reviewed-on: https://code.wireshark.org/review/881
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-03-31 18:48:06 +00:00

22 lines
361 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 | $(HTML2TXT) > $@
clean:
rm -rf faq.txt
distclean: clean
maintainer-clean: distclean