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:
authorMike Kestner <mkestner@gmail.com>2008-11-19 23:48:15 +0300
committerMike Kestner <mkestner@gmail.com>2008-11-19 23:48:15 +0300
commit1e7819617a487de6c9c062400f01b6cad2308d9b (patch)
tree65cf530738b9939824688a370f4cb1522179284d /main/src/addins/WindowsPlatform/Makefile.am
parentf069cdc189a9757fc049f3d9286ef81110cb97ed (diff)
internal dependency handling make system update
svn path=/trunk/monodevelop/; revision=119372
Diffstat (limited to 'main/src/addins/WindowsPlatform/Makefile.am')
-rw-r--r--main/src/addins/WindowsPlatform/Makefile.am7
1 files changed, 6 insertions, 1 deletions
diff --git a/main/src/addins/WindowsPlatform/Makefile.am b/main/src/addins/WindowsPlatform/Makefile.am
index bf9bcc901a..53b139dc95 100644
--- a/main/src/addins/WindowsPlatform/Makefile.am
+++ b/main/src/addins/WindowsPlatform/Makefile.am
@@ -1,6 +1,11 @@
ADDIN_BUILD = $(top_builddir)/build/AddIns
ASSEMBLY = $(ADDIN_BUILD)/WindowsPlatform.dll
+
+DEPS = \
+ $(top_builddir)/build/bin/MonoDevelop.Core.dll \
+ $(top_builddir)/build/bin/MonoDevelop.Core.Gui.dll
+
REFS = \
-r:$(top_builddir)/build/bin/MonoDevelop.Core.dll \
-r:$(top_builddir)/build/bin/MonoDevelop.Core.Gui.dll \
@@ -18,7 +23,7 @@ else
all:
endif
-$(ASSEMBLY): $(build_sources) $(build_resources)
+$(ASSEMBLY): $(build_sources) $(build_resources) $(DEPS)
mkdir -p $(ADDIN_BUILD)
$(CSC) $(CSC_FLAGS) $(REFS) $(build_resources:%=/resource:%) $(build_sources) -out:$@ -target:library