~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/tools/mdhost/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
ASSEMBLY = $(top_builddir)/build/bin/mdhost.exe
3
 
 
4
 
FILES = src/AssemblyInfo.cs \
5
 
src/mdhost.cs
6
 
 
7
 
all: $(ASSEMBLY) $(ASSEMBLY).config
8
 
 
9
 
REFS = -r:System.Runtime.Remoting \
10
 
        $(MONO_ADDINS_LIBS) \
11
 
        -r:Mono.Posix
12
 
 
13
 
DEPS = $(top_builddir)/build/bin/MonoDevelop.Core.dll
14
 
        
15
 
$(ASSEMBLY): $(build_sources) $(DEPS)
16
 
        $(CSC) $(CSC_FLAGS) $(build_sources) $(REFS) $(build_deps) -out:$(ASSEMBLY)
17
 
 
18
 
$(ASSEMBLY).config: $(ASSEMBLY) $(srcdir)/app.config
19
 
        cp $(srcdir)/app.config $(ASSEMBLY).config
20
 
 
21
 
assemblydir = $(MD_ASSEMBLY_DIR)
22
 
assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).mdb $(ASSEMBLY).config
23
 
 
24
 
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb $(ASSEMBLY).config
25
 
EXTRA_DIST = $(FILES) app.config
26
 
 
27
 
include $(top_srcdir)/Makefile.include
 
1
include $(top_srcdir)/xbuild.include