aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2003-11-24 17:41:33 +0000
committerUlf Lamping <ulf.lamping@web.de>2003-11-24 17:41:33 +0000
commita24a6b7a370faee2a6825a89350270aac40b6d0a (patch)
tree9be898e218fd53843933d9381838aef68a0cc2d2 /Makefile.nmake
parent0367782acf24fe6c2f0f203408e439939b018053 (diff)
bugfix: corrected clean and distclean targets
svn path=/trunk/; revision=9072
Diffstat (limited to 'Makefile.nmake')
-rw-r--r--Makefile.nmake10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index 7360e66c62..2bb19d2257 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -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.365 2003/11/24 00:34:12 guy Exp $
+# $Id: Makefile.nmake,v 1.366 2003/11/24 17:41:33 ulfl Exp $
include config.nmake
include <win32.mak>
@@ -707,10 +707,10 @@ clean:
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../doc
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
- cd ../packaging/nsis
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../help
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
+ cd ../packaging/nsis
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../..
# Call distclean only, if you would like to remove ALL generated files.
@@ -732,10 +732,10 @@ distclean: clean
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../doc
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
- cd ../packaging/nsis
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../help
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../packaging/nsis
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
cd ../..
tools::