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:
Diffstat (limited to 'main/src/tools/mdhost/Makefile.am')
-rw-r--r--main/src/tools/mdhost/Makefile.am23
1 files changed, 23 insertions, 0 deletions
diff --git a/main/src/tools/mdhost/Makefile.am b/main/src/tools/mdhost/Makefile.am
new file mode 100644
index 0000000000..35675598f9
--- /dev/null
+++ b/main/src/tools/mdhost/Makefile.am
@@ -0,0 +1,23 @@
+
+ASSEMBLY = $(top_builddir)/build/bin/mdhost.exe
+
+FILES = src/AssemblyInfo.cs \
+src/mdhost.cs
+
+all: $(ASSEMBLY)
+
+REFS = -r:$(top_builddir)/build/bin/MonoDevelop.Core.dll \
+ -r:System.Runtime.Remoting \
+ -r:$(top_builddir)/build/bin/Mono.Addins.dll \
+ -r:Mono.Posix
+
+$(ASSEMBLY): $(build_sources)
+ $(CSC) $(CSC_FLAGS) $(build_sources) $(REFS) -out:$(ASSEMBLY)
+
+assemblydir = $(MD_ASSEMBLY_DIR)
+assembly_DATA = $(ASSEMBLY)
+
+CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb
+EXTRA_DIST = $(FILES)
+
+include $(top_srcdir)/Makefile.include