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

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.HexEditor/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
 
DLLNAME = MonoDevelop.HexEditor.dll
2
 
ASSEMBLY = $(top_builddir)/build/AddIns/DisplayBindings/HexEditor/$(DLLNAME)
3
 
 
4
 
FILES =  \
5
 
        AssemblyInfo.cs \
6
 
        gtk-gui/generated.cs \
7
 
        Mono.MHex.Data/Buffer.cs \
8
 
        Mono.MHex.Data/Caret.cs \
9
 
        Mono.MHex.Data/EditMode.cs \
10
 
        Mono.MHex.Data/HexEditorData.cs \
11
 
        Mono.MHex.Data/ISegment.cs \
12
 
        Mono.MHex.Data/PieceTable.cs \
13
 
        Mono.MHex.Data/RedBlackTree.cs \
14
 
        Mono.MHex.Data/ReplaceEventArgs.cs \
15
 
        Mono.MHex.Data/Segment.cs \
16
 
        Mono.MHex.Data/Selection.cs \
17
 
        Mono.MHex.Data/UpdateRequest.cs \
18
 
        Mono.MHex.Rendering/DashedLineMargin.cs \
19
 
        Mono.MHex.Rendering/EmptySpaceMargin.cs \
20
 
        Mono.MHex.Rendering/GutterMargin.cs \
21
 
        Mono.MHex.Rendering/HexEditorMargin.cs \
22
 
        Mono.MHex.Rendering/HexEditorStyle.cs \
23
 
        Mono.MHex.Rendering/IconMargin.cs \
24
 
        Mono.MHex.Rendering/Margin.cs \
25
 
        Mono.MHex.Rendering/TextEditorMargin.cs \
26
 
        Mono.MHex/BookmarkActions.cs \
27
 
        Mono.MHex/CaretMoveActions.cs \
28
 
        Mono.MHex/DeleteActions.cs \
29
 
        Mono.MHex/HexEditor.cs \
30
 
        Mono.MHex/HexEditorOptions.cs \
31
 
        Mono.MHex/IHexEditorOptions.cs \
32
 
        Mono.MHex/MiscActions.cs \
33
 
        Mono.MHex/ScrollActions.cs \
34
 
        Mono.MHex/SelectionActions.cs \
35
 
        Mono.MHex/SimpleEditMode.cs \
36
 
        MonoDevelop.HexEditor/DisplayBinding.cs \
37
 
        MonoDevelop.HexEditor/HexEditorNodeExtension.cs \
38
 
        MonoDevelop.HexEditor/HexEditorView.cs \
39
 
        MonoDevelop.HexEditor/MonoDevelopHexEditorStyle.cs 
40
 
 
41
 
RES =  \
42
 
        gtk-gui/gui.stetic \
43
 
        MonoDevelop.HexEditor.addin.xml  
44
 
 
45
 
DEPS =  \
46
 
        $(top_builddir)/build/AddIns/DisplayBindings/AssemblyBrowser/MonoDevelop.AssemblyBrowser.dll \
47
 
        $(top_builddir)/build/AddIns/DisplayBindings/SourceEditor/MonoDevelop.SourceEditor2.dll \
48
 
        $(top_builddir)/build/AddIns/MonoDevelop.Debugger/MonoDevelop.Debugger.dll \
49
 
        $(top_builddir)/build/AddIns/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport.dll \
50
 
        $(top_builddir)/build/AddIns/MonoDevelop.Refactoring/MonoDevelop.Refactoring.dll \
51
 
        $(top_builddir)/build/bin/ICSharpCode.NRefactory.dll \
52
 
        $(top_builddir)/build/bin/Mono.TextEditor.dll \
53
 
        $(top_builddir)/build/bin/MonoDevelop.Core.dll \
54
 
        $(top_builddir)/build/bin/MonoDevelop.Ide.dll
55
 
 
56
 
REFS =  \
57
 
        $(GLADE_SHARP_LIBS) \
58
 
        $(GLIB_SHARP_LIBS) \
59
 
        $(GTK_SHARP_LIBS) \
60
 
        $(MONO_ADDINS_LIBS) \
61
 
        -r:Mono.Cairo \
62
 
        -r:Mono.Posix \
63
 
        -r:System \
64
 
        -r:System.Core
65
 
 
66
 
ADDIN_BUILD = $(top_builddir)/build/AddIns/DisplayBindings/HexEditor
67
 
 
68
 
all: $(ASSEMBLY) $(ASSEMBLY).mdb
69
 
 
70
 
$(ASSEMBLY) : $(build_sources) $(build_resources) $(DEPS)
71
 
        mkdir -p $(ADDIN_BUILD)
72
 
        $(CSC) $(CSC_FLAGS) $(build_resources:%=/resource:%) $(build_sources) -out:$@ -t:library $(REFS) $(build_deps)
73
 
 
74
 
$(ASSEMBLY).mdb: $(ASSEMBLY)
75
 
 
76
 
assemblydir = $(MD_ADDIN_DIR)
77
 
assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).mdb
78
 
 
79
 
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb
80
 
 
81
 
EXTRA_DIST = $(FILES) $(RES)
82
 
 
83
 
include $(top_srcdir)/Makefile.include
84
 
 
 
1
include $(top_srcdir)/xbuild.include