Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2008-02-16 20:01:18 +0300
committerSebastien Pouliot <sebastien@ximian.com>2008-02-16 20:01:18 +0300
commitb565c97f63d72a1fc53cc6c07a19c9c8c7ea9a48 (patch)
tree549f7333f75d4b410fbbb2e8cb93c310bbde34bb /gendarme/rules/Gendarme.Rules.Interoperability
parente8948bd5f410b9fa9385b936580041962baa62b1 (diff)
update build files
svn path=/trunk/mono-tools/; revision=95902
Diffstat (limited to 'gendarme/rules/Gendarme.Rules.Interoperability')
-rw-r--r--gendarme/rules/Gendarme.Rules.Interoperability/Gendarme.Rules.Interoperability.mdp4
-rw-r--r--gendarme/rules/Gendarme.Rules.Interoperability/Makefile.am10
-rw-r--r--gendarme/rules/Gendarme.Rules.Interoperability/Test/Test.Rules.Interoperability.mdp3
3 files changed, 11 insertions, 6 deletions
diff --git a/gendarme/rules/Gendarme.Rules.Interoperability/Gendarme.Rules.Interoperability.mdp b/gendarme/rules/Gendarme.Rules.Interoperability/Gendarme.Rules.Interoperability.mdp
index 6d6d602f..8d156918 100644
--- a/gendarme/rules/Gendarme.Rules.Interoperability/Gendarme.Rules.Interoperability.mdp
+++ b/gendarme/rules/Gendarme.Rules.Interoperability/Gendarme.Rules.Interoperability.mdp
@@ -16,7 +16,9 @@
<Contents>
<File name="GetLastErrorMustBeCalledRightAfterPInvokeRule.cs" subtype="Code" buildaction="Compile" />
<File name="PInvokeShouldNotBeVisibleRule.cs" subtype="Code" buildaction="Compile" />
- <File name="Gendarme.Rules.Interoperability.xml.in" subtype="Code" buildaction="Nothing" />
+ <File name="MarshalStringsInPInvokeDeclarationsRule.cs" subtype="Code" buildaction="Compile" />
+ <File name="UseManagedAlternativesToPInvokeRule.cs" subtype="Code" buildaction="Compile" />
+ <File name="ChangeLog" subtype="Code" buildaction="Nothing" />
</Contents>
<References>
<ProjectReference type="Assembly" localcopy="True" refto="../../../lib/Mono.Cecil.dll" />
diff --git a/gendarme/rules/Gendarme.Rules.Interoperability/Makefile.am b/gendarme/rules/Gendarme.Rules.Interoperability/Makefile.am
index 273cf2f3..3c7153d5 100644
--- a/gendarme/rules/Gendarme.Rules.Interoperability/Makefile.am
+++ b/gendarme/rules/Gendarme.Rules.Interoperability/Makefile.am
@@ -2,8 +2,8 @@ SUBDIRS=Test
interoperability_rulesdir=$(prefix)/lib/gendarme
interoperability_rules_SCRIPTS = ../../bin/Gendarme.Rules.Interoperability.dll
-interoperability_rules_DATA = Gendarme.Rules.Interoperability.xml
-EXTRA_DIST = $(interoperability_rules_sources) $(interoperability_rules_sources_in) Gendarme.Rules.Interoperability.xml \
+interoperability_rules_DATA =
+EXTRA_DIST = $(interoperability_rules_sources) $(interoperability_rules_sources_in) \
Gendarme.Rules.Interoperability.mdp
CLEANFILES = $(interoperability_rules_SCRIPTS) $(interoperability_rules_SCRIPTS).mdb Test.Rules.Interoperability.dll
DISTCLEANFILES = Makefile.in Gendarme.Rules.Interoperability.xml TestResult.xml
@@ -17,15 +17,15 @@ interoperability_rules_build_sources = $(addprefix $(srcdir)/, $(interoperabilit
interoperability_rules_build_sources += $(interoperability_rules_generated_sources)
../../bin/Gendarme.Rules.Interoperability.dll: $(interoperability_rules_build_sources)
- $(GMCS) -debug -target:library -r:$(top_builddir)/gendarme/bin/Mono.Cecil.dll -r:../../bin/Gendarme.Framework.dll -out:$@ $(interoperability_rules_build_sources)
- cp Gendarme.Rules.*.xml ../../bin/
+ $(GMCS) -debug -target:library -r:$(top_builddir)/gendarme/bin/Mono.Cecil.dll -r:../../bin/Gendarme.Framework.dll \
+ -out:$@ $(interoperability_rules_build_sources)
interoperability_test_sources = PInvokeShouldNotBeVisibleTest.cs GetLastErrorMustBeCalledRightAfterPInvokeTest.cs \
UseManagedAlternativesToPInvokeTest.cs MarshalStringsInPInvokeDeclarationsTest.cs
interoperability_test_build_sources = $(addprefix $(srcdir)/Test/, $(interoperability_test_sources))
-Test.Rules.Interoperability.dll: $(interoperability_rules_build_sources) $(interoperability_rules_SCRIPTS)
+Test.Rules.Interoperability.dll: $(interoperability_test_build_sources) $(interoperability_rules_SCRIPTS)
$(GMCS) -target:library -r:$(top_builddir)/gendarme/bin/Mono.Cecil.dll -pkg:mono-nunit -r:../../bin/Gendarme.Framework.dll \
-r:$(interoperability_rules_SCRIPTS) -out:$@ $(interoperability_test_build_sources)
diff --git a/gendarme/rules/Gendarme.Rules.Interoperability/Test/Test.Rules.Interoperability.mdp b/gendarme/rules/Gendarme.Rules.Interoperability/Test/Test.Rules.Interoperability.mdp
index 9a0d3f7d..d002837f 100644
--- a/gendarme/rules/Gendarme.Rules.Interoperability/Test/Test.Rules.Interoperability.mdp
+++ b/gendarme/rules/Gendarme.Rules.Interoperability/Test/Test.Rules.Interoperability.mdp
@@ -16,6 +16,9 @@
<Contents>
<File name="GetLastErrorMustBeCalledRightAfterPInvokeTest.cs" subtype="Code" buildaction="Compile" />
<File name="PInvokeShouldNotBeVisibleTest.cs" subtype="Code" buildaction="Compile" />
+ <File name="ChangeLog" subtype="Code" buildaction="Nothing" />
+ <File name="MarshalStringsInPInvokeDeclarationsTest.cs" subtype="Code" buildaction="Compile" />
+ <File name="UseManagedAlternativesToPInvokeTest.cs" subtype="Code" buildaction="Compile" />
</Contents>
<References>
<ProjectReference type="Assembly" localcopy="True" refto="../../../../lib/Mono.Cecil.dll" />