wireshark/tools/Makefile.nmake

18 lines
319 B
Makefile
Executable File

## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.3 2002/02/27 09:42:49 guy Exp $
all: lemon
clean:
cd lemon
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
lemon::
cd lemon
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..