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/MonoDevelop.RegexToolkit/Makefile.am
parentf069cdc189a9757fc049f3d9286ef81110cb97ed (diff)
internal dependency handling make system update
svn path=/trunk/monodevelop/; revision=119372
Diffstat (limited to 'main/src/addins/MonoDevelop.RegexToolkit/Makefile.am')
-rw-r--r--main/src/addins/MonoDevelop.RegexToolkit/Makefile.am11
1 files changed, 10 insertions, 1 deletions
diff --git a/main/src/addins/MonoDevelop.RegexToolkit/Makefile.am b/main/src/addins/MonoDevelop.RegexToolkit/Makefile.am
index 3b0fbff924..1b9d311c2d 100644
--- a/main/src/addins/MonoDevelop.RegexToolkit/Makefile.am
+++ b/main/src/addins/MonoDevelop.RegexToolkit/Makefile.am
@@ -2,6 +2,15 @@
ADDIN_BUILD = $(top_builddir)/build/AddIns/MonoDevelop.RegexToolkit
ASSEMBLY = $(ADDIN_BUILD)/MonoDevelop.RegexToolkit.dll
+DEPS = \
+ $(top_builddir)/build/AddIns/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport.dll \
+ $(top_builddir)/build/bin/MonoDevelop.Components.dll \
+ $(top_builddir)/build/bin/MonoDevelop.Core.dll \
+ $(top_builddir)/build/bin/MonoDevelop.Core.Gui.dll \
+ $(top_builddir)/build/bin/MonoDevelop.Ide.dll \
+ $(top_builddir)/build/bin/MonoDevelop.Projects.dll \
+ $(top_builddir)/build/bin/MonoDevelop.Projects.Gui.dll
+
REFS = \
$(GLIB_SHARP_LIBS) \
$(GTK_SHARP_LIBS) \
@@ -41,7 +50,7 @@ RES = \
all: $(ASSEMBLY)
-$(ASSEMBLY): $(build_sources) $(build_resources)
+$(ASSEMBLY): $(build_sources) $(build_resources) $(DEPS)
mkdir -p $(ADDIN_BUILD)
$(CSC) $(CSC_FLAGS) -debug -out:$@ -target:library $(REFS) \
$(build_resources:%=/resource:%) $(build_sources)