aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2015-01-01 20:41:49 -0500
committerBill Meier <wmeier@newsguy.com>2015-01-02 01:45:16 +0000
commit5c529c95c565b404602e1a0edc0ed24ff6f89cab (patch)
tree6b7002d5402685ba514bdac546a27c1e496f7e67 /plugins
parent06a1f4670e329f47e7199d59f7b712520e117035 (diff)
Add '*.nativecodeanalysis.xml' to 'clean' targets
Change-Id: I90dbf0b31fc737150a01533763a7869b34c68cb6 Reviewed-on: https://code.wireshark.org/review/6220 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/docsis/Makefile.nmake2
-rw-r--r--plugins/easy_codec/Makefile.nmake2
-rw-r--r--plugins/ethercat/Makefile.nmake2
-rw-r--r--plugins/gryphon/Makefile.nmake2
-rw-r--r--plugins/irda/Makefile.nmake2
-rw-r--r--plugins/m2m/Makefile.nmake2
-rw-r--r--plugins/mate/Makefile.nmake2
-rw-r--r--plugins/opcua/Makefile.nmake2
-rw-r--r--plugins/profinet/Makefile.nmake2
-rw-r--r--plugins/stats_tree/Makefile.nmake2
-rw-r--r--plugins/tpg/Makefile.nmake2
-rw-r--r--plugins/unistim/Makefile.nmake2
-rw-r--r--plugins/wimax/Makefile.nmake2
-rw-r--r--plugins/wimaxasncp/Makefile.nmake2
-rw-r--r--plugins/wimaxmacphy/Makefile.nmake2
15 files changed, 15 insertions, 15 deletions
diff --git a/plugins/docsis/Makefile.nmake b/plugins/docsis/Makefile.nmake
index 0ce5b5513d..0f77199ca4 100644
--- a/plugins/docsis/Makefile.nmake
+++ b/plugins/docsis/Makefile.nmake
@@ -77,7 +77,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/easy_codec/Makefile.nmake b/plugins/easy_codec/Makefile.nmake
index 5b907f3239..c444588404 100644
--- a/plugins/easy_codec/Makefile.nmake
+++ b/plugins/easy_codec/Makefile.nmake
@@ -55,7 +55,7 @@ easy_codec_plugin.obj : easy_codec_plugin.c
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/ethercat/Makefile.nmake b/plugins/ethercat/Makefile.nmake
index fce90ac41d..f19eaaa760 100644
--- a/plugins/ethercat/Makefile.nmake
+++ b/plugins/ethercat/Makefile.nmake
@@ -77,7 +77,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/gryphon/Makefile.nmake b/plugins/gryphon/Makefile.nmake
index 33da907e49..d5a0422456 100644
--- a/plugins/gryphon/Makefile.nmake
+++ b/plugins/gryphon/Makefile.nmake
@@ -77,7 +77,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/irda/Makefile.nmake b/plugins/irda/Makefile.nmake
index 13e868c491..0fac0f16e4 100644
--- a/plugins/irda/Makefile.nmake
+++ b/plugins/irda/Makefile.nmake
@@ -77,7 +77,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/m2m/Makefile.nmake b/plugins/m2m/Makefile.nmake
index 7402546521..3cfa63cdb7 100644
--- a/plugins/m2m/Makefile.nmake
+++ b/plugins/m2m/Makefile.nmake
@@ -77,7 +77,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/mate/Makefile.nmake b/plugins/mate/Makefile.nmake
index f33ed6bee6..dd715a6cfc 100644
--- a/plugins/mate/Makefile.nmake
+++ b/plugins/mate/Makefile.nmake
@@ -83,7 +83,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/opcua/Makefile.nmake b/plugins/opcua/Makefile.nmake
index fb1ceff873..fd1f19b0bd 100644
--- a/plugins/opcua/Makefile.nmake
+++ b/plugins/opcua/Makefile.nmake
@@ -77,7 +77,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/profinet/Makefile.nmake b/plugins/profinet/Makefile.nmake
index 852255e95c..dc67e64273 100644
--- a/plugins/profinet/Makefile.nmake
+++ b/plugins/profinet/Makefile.nmake
@@ -77,7 +77,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/stats_tree/Makefile.nmake b/plugins/stats_tree/Makefile.nmake
index 88cc86eb94..35123af5d9 100644
--- a/plugins/stats_tree/Makefile.nmake
+++ b/plugins/stats_tree/Makefile.nmake
@@ -45,7 +45,7 @@ $(PLUGIN_NAME).dll $(PLUGIN_NAME).exp $(PLUGIN_NAME).lib : $(OBJECTS) $(LINK_PLU
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/tpg/Makefile.nmake b/plugins/tpg/Makefile.nmake
index 281830a979..48e5958d52 100644
--- a/plugins/tpg/Makefile.nmake
+++ b/plugins/tpg/Makefile.nmake
@@ -34,7 +34,7 @@ mate.dll mate.exp mate.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
!ENDIF
clean:
- rm -f $(OBJECTS) mate.dll mate.exp mate.lib *.pdb *.sbr
+ rm -f $(OBJECTS) mate.dll mate.exp mate.lib *.nativecodeanalysis.xml *.pdb *.sbr
#
# We remove the generated files with "distclean" because one of them,
diff --git a/plugins/unistim/Makefile.nmake b/plugins/unistim/Makefile.nmake
index feaef90593..40c743d20b 100644
--- a/plugins/unistim/Makefile.nmake
+++ b/plugins/unistim/Makefile.nmake
@@ -77,7 +77,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/wimax/Makefile.nmake b/plugins/wimax/Makefile.nmake
index 15a4616318..ddfcd0a567 100644
--- a/plugins/wimax/Makefile.nmake
+++ b/plugins/wimax/Makefile.nmake
@@ -77,7 +77,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/wimaxasncp/Makefile.nmake b/plugins/wimaxasncp/Makefile.nmake
index d13d9030f2..abcad7723e 100644
--- a/plugins/wimaxasncp/Makefile.nmake
+++ b/plugins/wimaxasncp/Makefile.nmake
@@ -81,7 +81,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc
diff --git a/plugins/wimaxmacphy/Makefile.nmake b/plugins/wimaxmacphy/Makefile.nmake
index 194d54337c..dce0967719 100644
--- a/plugins/wimaxmacphy/Makefile.nmake
+++ b/plugins/wimaxmacphy/Makefile.nmake
@@ -77,7 +77,7 @@ plugin.c: $(REGISTER_SRC_FILES) moduleinfo.h Makefile.common ../../tools/make-di
!ENDIF
clean:
- rm -f $(OBJECTS) $(RESOURCE) plugin.c *.pdb *.sbr \
+ rm -f $(OBJECTS) $(RESOURCE) plugin.c *.nativecodeanalysis.xml *.pdb *.sbr \
$(PLUGIN_NAME).dll $(PLUGIN_NAME).dll.manifest $(PLUGIN_NAME).lib \
$(PLUGIN_NAME).exp $(PLUGIN_NAME).rc