wireshark/tools/Makefile.nmake
Gerald Combs be943c8419 Go a little deeper into the Win64 rabbit-hole. Add tools/native-nmake.cmd
and use it as a wrapper to compile a native version of lemon.
Untested on Win32.

svn path=/trunk/; revision=27734
2009-03-15 22:40:29 +00:00

34 lines
614 B
Makefile

## Makefile for building wireshark.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id$
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 ..