On Fri, Jan 02, 2004 at 06:11:06AM -0000, Murali.M wrote:
> i download the etheral sourcecode version ethereal-0.10.0a from the
> www.ethereal.com site. first time i try to run cleanbld.bat file. after
> that i run nmake -f makefile.nmake. i found error. the error was attached
> as image file with this file.
That's a rather large file, and isn't necessarily readable by everybody
on the list (not everybody has software that can read Windows .bmp
files); it would have been better had it just been sent as text (much
smaller, and readable by everybody).
The problem is that there was an error in the tools\Makefile.am file
that caused tools\Makefile.nmake not to be included in the tarball.
I've attached a copy of tools\Makefile.nmake, which you'd need to save
in the tools subdirectory of your Ethereal source tree.
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.5 2003/10/13 19:04:56 guy Exp $
all: lemon
clean:
cd lemon
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
distclean: clean
cd lemon
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ..
lemon::
cd lemon
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..