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

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.GtkCore/libsteticui/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
 
ADDIN_BUILD = $(top_builddir)/build/AddIns/MonoDevelop.GtkCore
2
 
ASSEMBLY = $(ADDIN_BUILD)/libsteticui.dll
3
 
assemblydir = $(MD_ADDIN_DIR)/MonoDevelop.GtkCore
4
 
assembly_DATA = $(ASSEMBLY) $(build_dll_config)
5
 
 
6
 
FILES =  \
7
 
        ActionComponent.cs \
8
 
        ActionGroupComponent.cs \
9
 
        ActionGroupDesigner.cs \
10
 
        ActionGroupDesignerBackend.cs \
11
 
        ActionGroupEditSession.cs \
12
 
        ActionGroupToolbar.cs \
13
 
        Application.cs \
14
 
        ApplicationBackend.cs \
15
 
        ApplicationBackendController.cs \
16
 
        AssemblyResolver.cs \
17
 
        AssemblyWidgetLibrary.cs \
18
 
        CecilClassDescriptor.cs \
19
 
        CecilPropertyDescriptor.cs \
20
 
        CecilSignalDescriptor.cs \
21
 
        CecilWidgetLibrary.cs \
22
 
        CodeGenerationResult.cs \
23
 
        CodeGenerator.cs \
24
 
        CodeGeneratorInternalClass.cs \
25
 
        CodeGeneratorPartialClass.cs \
26
 
        Component.cs \
27
 
        ComponentEventHandler.cs \
28
 
        ComponentSignalEventHandler.cs \
29
 
        ComponentType.cs \
30
 
        ContainerUndoRedoManager.cs \
31
 
        ContextMenu.cs \
32
 
        Designer.cs \
33
 
        Glade.cs \
34
 
        Grid.cs \
35
 
        GuiDispatchServerSink.cs \
36
 
        GuiDispatchServerSinkProvider.cs \
37
 
        LibraryCache.cs \
38
 
        Metacity/ButtonFunction.cs \
39
 
        Metacity/ButtonLayout.cs \
40
 
        Metacity/FrameFlags.cs \
41
 
        Metacity/FrameType.cs \
42
 
        Metacity/ObjectManager.cs \
43
 
        Metacity/Preview.cs \
44
 
        Metacity/Theme.cs \
45
 
        Palette.cs \
46
 
        PaletteBackend.cs \
47
 
        PluggableWidget.cs \
48
 
        Project.cs \
49
 
        ProjectBackend.cs \
50
 
        ProjectViewBackend.cs \
51
 
        PropertyEditor.cs \
52
 
        PropertyGrid.cs \
53
 
        PropertyTree.cs \
54
 
        Shadow.cs \
55
 
        SignalsEditor.cs \
56
 
        SignalsEditorBackend.cs \
57
 
        UndoQueue.cs \
58
 
        UserInterface.cs \
59
 
        WidgetActionBar.cs \
60
 
        WidgetComponent.cs \
61
 
        WidgetDesigner.cs \
62
 
        WidgetDesignerBackend.cs \
63
 
        WidgetEditSession.cs \
64
 
        WidgetFactory.cs \
65
 
        WidgetInfoEventHandler.cs \
66
 
        WidgetPropertyTree.cs \
67
 
        WidgetPropertyTreeBackend.cs \
68
 
        WidgetTree.cs \
69
 
        WidgetTreeCombo.cs \
70
 
        Windows/Preview.cs \
71
 
        Windows/WindowsTheme.cs
72
 
 
73
 
RES =  \
74
 
        action.png \
75
 
        missing.png
76
 
 
77
 
DEPS = ../../../../build/AddIns/MonoDevelop.GtkCore/libstetic.dll
78
 
 
79
 
REFS =  \
80
 
        $(GLADE_SHARP_LIBS) \
81
 
        $(GLIB_SHARP_LIBS) \
82
 
        $(GTK_SHARP_LIBS) \
83
 
        -r:../../../../build/bin/Mono.Cecil.dll \
84
 
        -r:Mono.Posix \
85
 
        -r:System \
86
 
        -r:System.Core \
87
 
        -r:System.Runtime.Remoting \
88
 
        -r:System.Xml
89
 
 
90
 
$(ASSEMBLY): $(build_sources) $(build_resources) $(DEPS)
91
 
        mkdir -p $(ADDIN_BUILD)
92
 
        $(CSC) $(CSC_FLAGS) -debug -unsafe -main:Stetic.ApplicationBackend -out:$@ \
93
 
        $(build_resources:%=/resource:%) $(build_sources) $(REFS) $(build_deps)
94
 
 
95
 
dll_config = libsteticui.dll.config
96
 
build_dll_config = $(ADDIN_BUILD)/$(dll_config)
97
 
 
98
 
$(build_dll_config): $(srcdir)/$(dll_config)
99
 
        mkdir -p $(ADDIN_BUILD)
100
 
        cp $(srcdir)/$(dll_config) $@
101
 
 
102
 
EXTRA_DIST = $(FILES) $(RES) $(dll_config)
103
 
 
104
 
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb
105
 
 
106
 
include $(top_srcdir)/Makefile.include
107
 
 
 
1
include $(top_srcdir)/xbuild.include