aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
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 /packaging
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 'packaging')
-rw-r--r--packaging/nsis/Makefile.nmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/packaging/nsis/Makefile.nmake b/packaging/nsis/Makefile.nmake
index 74ac7e456a..6f76327416 100644
--- a/packaging/nsis/Makefile.nmake
+++ b/packaging/nsis/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.21 2003/10/02 22:28:04 gerald Exp $
+# $Id: Makefile.nmake,v 1.22 2003/10/10 21:31:49 guy Exp $
#
# NSIS is a free packager/installer/uninstaller program for Win32.
# It was originally written for the Winamp package, but various
@@ -49,6 +49,8 @@ ethereal-setup-$(VERSION).exe : ethereal.nsi $(DELIVERABLES)
clean:
rm -f ethereal-setup-$(VERSION).exe
+distclean: clean
+
$(DOC):
cd ../../doc
$(MAKE) -f makefile.nmake
@@ -58,4 +60,3 @@ $(EXE) $(DLL):
cd ../..
$(MAKE) -f makefile.nmake
cd packaging/nsis
-