aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
Diffstat (limited to 'epan')
-rw-r--r--epan/Makefile.nmake2
-rw-r--r--epan/compress/Makefile.nmake2
-rw-r--r--epan/crypt/Makefile.nmake2
-rw-r--r--epan/dfilter/Makefile.nmake2
-rw-r--r--epan/dissectors/Makefile.nmake2
-rw-r--r--epan/ftypes/Makefile.nmake2
-rw-r--r--epan/nghttp2/Makefile.nmake2
-rw-r--r--epan/wmem/Makefile.nmake2
-rw-r--r--epan/wslua/Makefile.nmake3
9 files changed, 10 insertions, 9 deletions
diff --git a/epan/Makefile.nmake b/epan/Makefile.nmake
index 26e059c5ed..f0ad957250 100644
--- a/epan/Makefile.nmake
+++ b/epan/Makefile.nmake
@@ -124,7 +124,7 @@ libwireshark.lib : ..\config.h $(LIBWIRESHARK_OBJECTS) compress crypt ftypes dfi
clean-local:
rm -f $(LIBWIRESHARK_OBJECTS) $(EXTRA_OBJECTS) \
libwireshark.lib libwireshark.dll *.manifest libwireshark.exp \
- *.pdb *.sbr doxygen.cfg html/*.* \
+ *.nativecodeanalysis.xml *.pdb *.sbr doxygen.cfg html/*.* \
exntest.obj exntest.exe exntest.exp reassemble_test.obj reassemble_test.exe tvbtest.obj tvbtest.exe tvbtest.exp oids_test.obj oids_test.exe oids_test.exp
if exist html rm -rf html
diff --git a/epan/compress/Makefile.nmake b/epan/compress/Makefile.nmake
index cb9615bfad..cdb7fda62f 100644
--- a/epan/compress/Makefile.nmake
+++ b/epan/compress/Makefile.nmake
@@ -20,7 +20,7 @@ lzxpress.lib: $(LZXPRESS_OBJECTS)
link /lib /out:lzxpress.lib $(LZXPRESS_OBJECTS)
clean:
- rm -f $(LZXPRESS_OBJECTS) lzxpress.lib *.pdb *.sbr
+ rm -f $(LZXPRESS_OBJECTS) lzxpress.lib *.nativecodeanalysis.xml *.pdb *.sbr
distclean: clean
diff --git a/epan/crypt/Makefile.nmake b/epan/crypt/Makefile.nmake
index b580c48b7b..8bd46e677a 100644
--- a/epan/crypt/Makefile.nmake
+++ b/epan/crypt/Makefile.nmake
@@ -19,7 +19,7 @@ airpdcap.lib: $(AIRPDCAP_OBJECTS)
link /lib /out:airpdcap.lib $(AIRPDCAP_OBJECTS)
clean:
- rm -f $(AIRPDCAP_OBJECTS) airpdcap.lib *.pdb *.sbr
+ rm -f $(AIRPDCAP_OBJECTS) airpdcap.lib *.nativecodeanalysis.xml *.pdb *.sbr
distclean: clean
diff --git a/epan/dfilter/Makefile.nmake b/epan/dfilter/Makefile.nmake
index e3bca45cc4..e2c5a3189e 100644
--- a/epan/dfilter/Makefile.nmake
+++ b/epan/dfilter/Makefile.nmake
@@ -38,7 +38,7 @@ $(OBJECTS): ..\..\config.h
cd epan\dfilter
clean:
- rm -f $(OBJECTS) dfilter.lib *.pdb *.sbr
+ rm -f $(OBJECTS) dfilter.lib *.nativecodeanalysis.xml *.pdb *.sbr
#
# We remove the generated files with "distclean" because one of them,
diff --git a/epan/dissectors/Makefile.nmake b/epan/dissectors/Makefile.nmake
index 5266a47da2..0fe3442868 100644
--- a/epan/dissectors/Makefile.nmake
+++ b/epan/dissectors/Makefile.nmake
@@ -89,7 +89,7 @@ x11-dissector: ..\..\tools/process-x11-fields.pl x11-fields ..\..\tools/process-
$(PERL) ../../tools/process-x11-xcb.pl
clean:
- rm -f dissectors.lib *.pdb *.sbr register.c-tmp register-cache.pkl \
+ rm -f dissectors.lib *.nativecodeanalysis.xml *.pdb *.sbr register.c-tmp register-cache.pkl \
$(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS)
distclean: clean
diff --git a/epan/ftypes/Makefile.nmake b/epan/ftypes/Makefile.nmake
index aefc3f17f6..1acff2ef92 100644
--- a/epan/ftypes/Makefile.nmake
+++ b/epan/ftypes/Makefile.nmake
@@ -21,7 +21,7 @@ ftypes.lib : $(OBJECTS)
link /lib /out:ftypes.lib $(OBJECTS)
clean:
- rm -f $(OBJECTS) ftypes.lib *.pdb *.sbr
+ rm -f $(OBJECTS) ftypes.lib *.nativecodeanalysis.xml *.pdb *.sbr
distclean: clean
diff --git a/epan/nghttp2/Makefile.nmake b/epan/nghttp2/Makefile.nmake
index 852f18e22c..140f8c2285 100644
--- a/epan/nghttp2/Makefile.nmake
+++ b/epan/nghttp2/Makefile.nmake
@@ -20,7 +20,7 @@ nghttp2.lib: $(OBJECTS)
link /lib /out:nghttp2.lib $(OBJECTS)
clean:
- rm -f $(OBJECTS) nghttp2.lib *.pdb *.sbr
+ rm -f $(OBJECTS) nghttp2.lib *.nativecodeanalysis.xml *.pdb *.sbr
distclean: clean
diff --git a/epan/wmem/Makefile.nmake b/epan/wmem/Makefile.nmake
index d7e6a92853..2adc57b7c0 100644
--- a/epan/wmem/Makefile.nmake
+++ b/epan/wmem/Makefile.nmake
@@ -19,7 +19,7 @@ wmem.lib: $(WMEM_OBJECTS)
link /lib /out:wmem.lib $(WMEM_OBJECTS)
clean:
- rm -f $(WMEM_OBJECTS) wmem.lib *.pdb *.sbr wmem_test.obj wmem_test.exe wmem_test.exp
+ rm -f $(WMEM_OBJECTS) wmem.lib *.nativecodeanalysis.xml *.pdb *.sbr wmem_test.obj wmem_test.exe wmem_test.exp
distclean: clean
diff --git a/epan/wslua/Makefile.nmake b/epan/wslua/Makefile.nmake
index 22c33772da..9a8e9e344a 100644
--- a/epan/wslua/Makefile.nmake
+++ b/epan/wslua/Makefile.nmake
@@ -59,7 +59,8 @@ wslua.lib : $(OBJECTS) init.lua
link /lib /NODEFAULTLIB /out:wslua.lib $(OBJECTS)
clean:
- rm -f $(OBJECTS) wslua.lib *.pdb *.sbr init.lua taps_wslua.c declare_wslua.h register_wslua.c taps.txt
+ rm -f $(OBJECTS) wslua.lib init.lua taps_wslua.c declare_wslua.h register_wslua.c taps.txt \
+ *.nativecodeanalysis.xml *.pdb *.sbr
init_wslua.c: declare_wslua.h