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

« back to all changes in this revision

Viewing changes to src/addins/CSharpBinding/AspNet/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
 
cdFILES = AspLanguageBuilder.cs
2
 
 
3
 
DEPS =  \
4
 
        $(top_builddir)/build/AddIns/BackendBindings/MonoDevelop.CSharpBinding.dll \
5
 
        $(top_builddir)/build/AddIns/MonoDevelop.AspNet/MonoDevelop.AspNet.dll \
6
 
        $(top_builddir)/build/AddIns/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport.dll \
7
 
        $(top_builddir)/build/AddIns/MonoDevelop.Refactoring/MonoDevelop.Refactoring.dll \
8
 
        $(top_builddir)/build/bin/ICSharpCode.NRefactory.CSharp.dll \
9
 
        $(top_builddir)/build/bin/ICSharpCode.NRefactory.dll \
10
 
        $(top_builddir)/build/bin/Mono.TextEditor.dll \
11
 
        $(top_builddir)/build/bin/MonoDevelop.Core.dll \
12
 
        $(top_builddir)/build/bin/MonoDevelop.Ide.dll \
13
 
        $(top_builddir)/build/bin/OldNRefactory.dll
14
 
 
15
 
REFS =  \
16
 
        $(GLIB_SHARP_LIBS) \
17
 
        $(GTK_SHARP_LIBS) \
18
 
        -r:System \
19
 
        -r:System.Core
20
 
 
21
 
FILES =  \
22
 
        AspLanguageBuilder.cs \
23
 
        ASPNetReferenceFinder.cs
24
 
 
25
 
ADDIN_BUILD = $(top_builddir)/build/AddIns/BackendBindings
26
 
ASSEMBLY = $(ADDIN_BUILD)/MonoDevelop.CSharpBinding.AspNet.dll
27
 
 
28
 
all: $(ASSEMBLY) $(ASSEMBLY).mdb
29
 
 
30
 
$(ASSEMBLY): $(build_sources) $(DEPS)
31
 
        mkdir -p $(ADDIN_BUILD)
32
 
        $(CSC) $(CSC_FLAGS) -target:library -out:$@ $(build_sources) $(REFS) $(build_deps)
33
 
 
34
 
$(ASSEMBLY).mdb: $(ASSEMBLY)
35
 
 
36
 
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb
37
 
 
38
 
EXTRA_DIST = $(FILES)
39
 
 
40
 
include $(top_srcdir)/Makefile.include
41
 
 
42
 
csharpbindinglibdir = $(MD_ADDIN_DIR)/BackendBindings
43
 
csharpbindinglib_DATA = $(ASSEMBLY) $(ASSEMBLY).mdb
 
1
include $(top_srcdir)/xbuild.include