aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-10-10 21:31:53 +0000
committerGuy Harris <guy@alum.mit.edu>2003-10-10 21:31:53 +0000
commit02e1d2680aaa15b86569be90846e95998d703162 (patch)
tree865029dcf9c7e8004063c95dc45f610149edf0bc /plugins/Makefile.nmake
parent04cd6b60742277df0002b89386696f2ebaa04df2 (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". svn path=/trunk/; revision=8672
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r--plugins/Makefile.nmake24
1 files changed, 23 insertions, 1 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index 722a338c66..1d48209e2f 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.24 2003/08/19 02:16:26 guy Exp $
+# $Id: Makefile.nmake,v 1.25 2003/10/10 21:31:49 guy Exp $
#
include ..\config.nmake
@@ -90,3 +90,25 @@ clean:
cd ../rtnet
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
+
+distclean: clean
+ cd artnet
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../docsis
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../giop
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../gryphon
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../lwres
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../megaco
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../mgcp
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../pcli
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ../rtnet
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
+ cd ..
+