wireshark/tools/Makefile.nmake
Gerald Combs 4ed6fc0bc3 Ethereal -> Wireshark
svn path=/trunk/; revision=18374
2006-06-06 23:27:21 +00:00

27 lines
464 B
Makefile

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