From Ulf Lamping: add some missing "cd .."s. (I guess the current

directory in nmake files persists across targets; presumably all
commands, or, at least, all "cd" commands, are run in the same process.)

svn path=/trunk/; revision=8682
This commit is contained in:
Guy Harris 2003-10-13 19:04:56 +00:00
parent 88955fd7f4
commit be4197e744
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.30 2003/10/10 21:31:47 guy Exp $
# $Id: Makefile.nmake,v 1.31 2003/10/13 19:04:55 guy Exp $
include ..\config.nmake
@ -64,6 +64,7 @@ clean:
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../dfilter
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
distclean: clean
rm -f config.h
@ -71,6 +72,7 @@ distclean: clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../dfilter
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ..
ftypes:: config.h
cd ftypes

View File

@ -1,17 +1,19 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.4 2003/10/10 21:31:53 guy Exp $
# $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