diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-10-10 21:31:53 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-10-10 21:31:53 +0000 |
commit | 02e1d2680aaa15b86569be90846e95998d703162 (patch) | |
tree | 865029dcf9c7e8004063c95dc45f610149edf0bc /plugins/pcli/Makefile.nmake | |
parent | 04cd6b60742277df0002b89386696f2ebaa04df2 (diff) | |
download | wireshark-02e1d2680aaa15b86569be90846e95998d703162.tar.gz wireshark-02e1d2680aaa15b86569be90846e95998d703162.tar.bz2 wireshark-02e1d2680aaa15b86569be90846e95998d703162.zip |
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/pcli/Makefile.nmake')
-rw-r--r-- | plugins/pcli/Makefile.nmake | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/pcli/Makefile.nmake b/plugins/pcli/Makefile.nmake index 4c08249018..1c31060d6f 100644 --- a/plugins/pcli/Makefile.nmake +++ b/plugins/pcli/Makefile.nmake @@ -1,5 +1,5 @@ # -# $Id: Makefile.nmake,v 1.3 2003/06/14 20:45:28 guy Exp $ +# $Id: Makefile.nmake,v 1.4 2003/10/10 21:31:52 guy Exp $ # include ..\..\config.nmake @@ -17,3 +17,5 @@ pcli.dll pcli.exp pcli.lib : packet-pcli.obj ..\plugin_api.obj clean: rm -f $(OBJECTS) pcli.dll pcli.exp pcli.lib $(PDB_FILE) + +distclean: clean |