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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2011-02-09 03:17:39 +0300
committerMichael Hutchinson <mhutchinson@novell.com>2011-02-09 05:32:51 +0300
commit82f4b47dc12557b806214fd2605efdde11535ad3 (patch)
tree1d7f8e2b7b3c7128521a9b3a3cc780334e6d20e7 /main/src/addins/MonoDeveloperExtensions
parent2fcffcabf69a2b3f4450ee3d16478750071f5a96 (diff)
Fix more build deps
Diffstat (limited to 'main/src/addins/MonoDeveloperExtensions')
-rw-r--r--main/src/addins/MonoDeveloperExtensions/NUnit/Makefile.am15
-rw-r--r--main/src/addins/MonoDeveloperExtensions/NUnit/NUnit.csproj8
2 files changed, 12 insertions, 11 deletions
diff --git a/main/src/addins/MonoDeveloperExtensions/NUnit/Makefile.am b/main/src/addins/MonoDeveloperExtensions/NUnit/Makefile.am
index 46aa1b620a..53fb15821b 100644
--- a/main/src/addins/MonoDeveloperExtensions/NUnit/Makefile.am
+++ b/main/src/addins/MonoDeveloperExtensions/NUnit/Makefile.am
@@ -1,10 +1,11 @@
FILES = MonoTestProvider.cs
-REFS = \
- -r:$(top_builddir)/build/AddIns/MonoDeveloperExtensions/MonoDeveloperExtensions.dll \
- -r:$(top_builddir)/build/AddIns/NUnit/MonoDevelop.NUnit.dll \
- -r:$(top_builddir)/build/bin/MonoDevelop.Core.dll \
- -r:System
+REFS = -r:System
+
+DEPS = \
+ $(top_builddir)/build/AddIns/MonoDeveloperExtensions/MonoDeveloperExtensions.dll \
+ $(top_builddir)/build/AddIns/NUnit/MonoDevelop.NUnit.dll \
+ $(top_builddir)/build/bin/MonoDevelop.Core.dll
ADDIN_BUILD = $(top_builddir)/build/AddIns/MonoDeveloperExtensions
@@ -16,9 +17,9 @@ else
all:
endif
-$(ASSEMBLY): $(build_sources)
+$(ASSEMBLY): $(build_sources) $(DEPS)
mkdir -p $(ADDIN_BUILD)
- $(CSC) $(CSC_FLAGS) -target:library -out:$@ $(build_sources) $(REFS)
+ $(CSC) $(CSC_FLAGS) -target:library -out:$@ $(build_sources) $(REFS) $(build_deps)
$(ASSEMBLY).mdb: $(ASSEMBLY)
diff --git a/main/src/addins/MonoDeveloperExtensions/NUnit/NUnit.csproj b/main/src/addins/MonoDeveloperExtensions/NUnit/NUnit.csproj
index b54c0459e7..c571dbc4bf 100644
--- a/main/src/addins/MonoDeveloperExtensions/NUnit/NUnit.csproj
+++ b/main/src/addins/MonoDeveloperExtensions/NUnit/NUnit.csproj
@@ -68,14 +68,14 @@
<ProjectExtensions>
<MonoDevelop>
<Properties>
- <MonoDevelop.Autotools.MakefileInfo IntegrationEnabled="true" RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="true" IsAutotoolsProject="true" RelativeConfigureInPath="../../../..">
+ <MonoDevelop.Autotools.MakefileInfo IntegrationEnabled="true" RelativeMakefileName="Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="true" IsAutotoolsProject="true" RelativeConfigureInPath="../../../..">
<BuildFilesVar Sync="true" Name="FILES" />
<DeployFilesVar />
<ResourcesVar />
<OthersVar />
- <GacRefVar Name="REFS" Prefix="-r:" />
- <AsmRefVar Name="REFS" Prefix="-r:" />
- <ProjectRefVar Name="REFS" Prefix="-r:" />
+ <GacRefVar Sync="true" Name="REFS" Prefix="-r:" />
+ <AsmRefVar Sync="true" Name="REFS" Prefix="-r:" />
+ <ProjectRefVar Sync="true" Name="DEPS" />
</MonoDevelop.Autotools.MakefileInfo>
</Properties>
</MonoDevelop>