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

« back to all changes in this revision

Viewing changes to src/addins/ILAsmBinding/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
 
ADDIN_BUILD = $(top_builddir)/build/AddIns/BackendBindings
3
 
ASSEMBLY = $(ADDIN_BUILD)/ILAsmBinding.dll
4
 
 
5
 
DEPS =  \
6
 
        $(top_builddir)/build/bin/MonoDevelop.Core.dll \
7
 
        $(top_builddir)/build/bin/MonoDevelop.Ide.dll
8
 
 
9
 
REFS =  \
10
 
        $(GLIB_SHARP_LIBS) \
11
 
        $(GTK_SHARP_LIBS) \
12
 
        $(MONO_ADDINS_LIBS) \
13
 
        -r:Mono.Posix \
14
 
        -r:System \
15
 
        -r:System.Xml
16
 
 
17
 
FILES =  \
18
 
        AssemblyInfo.cs \
19
 
        gtk-gui/generated.cs \
20
 
        gtk-gui/ILAsmBinding.CompilerParametersPanelWidget.cs \
21
 
        Gui/CompilerParametersPanelWidget.cs \
22
 
        ILAsmCompilerManager.cs \
23
 
        ILAsmLanguageBinding.cs \
24
 
        Project/ILAsmCompilerParameters.cs
25
 
 
26
 
RES =  \
27
 
        gtk-gui/gui.stetic \
28
 
        ILAsmBinding.addin.xml \
29
 
        ILAsmConsoleProject.xpt.xml
30
 
 
31
 
 
32
 
assemblydir = $(MD_ADDIN_DIR)/BackendBindings
33
 
assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).mdb
34
 
 
35
 
all: $(ASSEMBLY) $(ASSEMBLY).mdb
36
 
 
37
 
$(ASSEMBLY): $(build_sources) $(build_resources) $(DEPS)
38
 
        mkdir -p $(ADDIN_BUILD)
39
 
        $(CSC) $(CSC_FLAGS) $(build_resources:%=/resource:%) $(build_sources) $(REFS) $(build_deps) -out:$@ -target:library
40
 
 
41
 
$(ASSEMBLY).mdb: $(ASSEMBLY)
42
 
 
43
 
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb
44
 
EXTRA_DIST = $(FILES) $(RES)
45
 
include $(top_srcdir)/Makefile.include
46
 
 
 
1
include $(top_srcdir)/xbuild.include