wireshark/tools/Makefile.nmake
Jeff Morriss 82e2865739 Remove $Id$ and other Subversion leftovers from the tools.
There are a few things in here which could still use attention.

Don't regenerate anything now.

Change-Id: I283c224d3523212144707fca3d6265916cb11792
Reviewed-on: https://code.wireshark.org/review/205
Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
2014-02-14 01:35:57 +00:00

32 lines
605 B
Makefile

## Makefile for building wireshark.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
all: lemon
clean-local:
rm -f *.pyc
clean: clean-local
cd lemon
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
distclean-local: clean-local
distclean: distclean-local
cd lemon
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ..
maintainer-clean-local: distclean-local
maintainer-clean: maintainer-clean-local
cd lemon
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
cd ..
lemon::
cd lemon
..\native-nmake $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..