aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-10-13 19:04:56 +0000
committerGuy Harris <guy@alum.mit.edu>2003-10-13 19:04:56 +0000
commitbe4197e744a7bef10fd409ca8384c8b6d6e89070 (patch)
tree79cd5b2924ea3291cb183cb6103326ec088b58db /tools/Makefile.nmake
parent88955fd7f4b7a4a9cca3b345958200fcefb44009 (diff)
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
Diffstat (limited to 'tools/Makefile.nmake')
-rwxr-xr-xtools/Makefile.nmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/Makefile.nmake b/tools/Makefile.nmake
index 55055337a0..876f8aae0f 100755
--- a/tools/Makefile.nmake
+++ b/tools/Makefile.nmake
@@ -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