aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile.nmake
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-10-10 21:31:53 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-10-10 21:31:53 +0000
commite616c2a1b41de35d335d3abc44ea6a22e0b0a168 (patch)
tree865029dcf9c7e8004063c95dc45f610149edf0bc /tools/Makefile.nmake
parentb08aebcf43d2c344144cc984203138ecd95d99e3 (diff)
Give every Makefile.nmake file a "distclean" rule, and have "distclean"
recurse into subdirectories doing "nmake -f Makefile.nmake distclean". Have "nmake -f Makefile.nmake clean" not remove stuff that "make clean" doesn't remove (such as Flex/Bison output and config.h files) - and have "nmake -f Makefile.nmake distclean" remove stuff that "make distclean" removes, including "tethereal-tap-register.c" and "ethereal-tap-register.c". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8672 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tools/Makefile.nmake')
-rwxr-xr-xtools/Makefile.nmake6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/Makefile.nmake b/tools/Makefile.nmake
index 6e1585d80a..55055337a0 100755
--- a/tools/Makefile.nmake
+++ b/tools/Makefile.nmake
@@ -1,15 +1,17 @@
## 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 $
+# $Id: Makefile.nmake,v 1.4 2003/10/10 21:31:53 guy Exp $
all: lemon
-
clean:
cd lemon
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
+distclean: clean
+ cd lemon
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
lemon::
cd lemon