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:
authorLluis Sanchez <lluis@novell.com>2008-05-13 16:21:35 +0400
committerLluis Sanchez <lluis@novell.com>2008-05-13 16:21:35 +0400
commitb62aa5248c8e7827c8864bc9602475789f0b1455 (patch)
tree76df5ff3bb12decb647a2145ecf0939467b7757a /main/src/addins/MonoDevelop.Debugger/Makefile.am
parentae4ff95c994281a98d528f83f4489c3d23ec73e5 (diff)
Moved debugger add-in into the main module, excluding all mdb-specific classes. The debugger service is now part of MD.Ide.
svn path=/trunk/monodevelop/; revision=103069
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger/Makefile.am')
-rw-r--r--main/src/addins/MonoDevelop.Debugger/Makefile.am41
1 files changed, 41 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger/Makefile.am b/main/src/addins/MonoDevelop.Debugger/Makefile.am
new file mode 100644
index 0000000000..670f1d28c4
--- /dev/null
+++ b/main/src/addins/MonoDevelop.Debugger/Makefile.am
@@ -0,0 +1,41 @@
+
+ADDIN_BUILD = $(top_builddir)/build/AddIns/MonoDevelop.Debugger
+ASSEMBLY = $(ADDIN_BUILD)/MonoDevelop.Debugger.dll
+
+REFS = \
+ $(GLIB_SHARP_LIBS) \
+ $(GTK_SHARP_LIBS) \
+ -r:../../../../build/bin/Mono.Debugging.dll \
+ -r:../../../build/bin/MonoDevelop.Core.dll \
+ -r:../../../build/bin/MonoDevelop.Core.Gui.dll \
+ -r:../../../build/bin/MonoDevelop.Ide.dll \
+ -r:../../../build/bin/MonoDevelop.Projects.dll \
+ -r:System
+
+FILES = \
+ AssemblyInfo.cs \
+ MonoDevelop.Debugger/StackTracePad.cs
+
+RES = MonoDevelop.Debugger.addin.xml
+
+DATA_FILES =
+
+DATA_FILE_BUILD = $(addprefix $(ADDIN_BUILD)/, $(notdir $(DATA_FILES)))
+
+all: $(ASSEMBLY) $(DATA_FILE_BUILD)
+
+$(DATA_FILE_BUILD): $(srcdir)$(subst $(ADDIN_BUILD),, $@)
+ mkdir -p $(ADDIN_BUILD)
+ cp $(srcdir)/templates$(subst $(ADDIN_BUILD),,$@) $@
+
+$(ASSEMBLY): $(FILES) $(build_resources)
+ mkdir -p $(ADDIN_BUILD)
+ $(CSC) $(CSC_FLAGS) $(REFS) $(build_resources:%=/resource:%) $(build_sources) -out:$@ -target:library
+
+assemblydir = $(MD_ADDIN_DIR)/MonoDevelop.Debugger
+assembly_DATA = $(ASSEMBLY) $(DATA_FILES)
+
+CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb $(DATA_FILE_BUILD)
+EXTRA_DIST = $(FILES) $(RES) $(DATA_FILES)
+
+include $(top_srcdir)/Makefile.include