Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « MonoDevelop.XmlEditor « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76004526b076977cc3cb4dd143a6f6dc7a872753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130

ADDIN_BUILD = $(top_builddir)/build/AddIns/MonoDevelop.XmlEditor
ASSEMBLY = $(ADDIN_BUILD)/MonoDevelop.XmlEditor.dll

DEPS =  \
	$(top_builddir)/build/AddIns/MonoDevelop.Debugger/MonoDevelop.Debugger.dll \
	$(top_builddir)/build/AddIns/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport.dll \
	$(top_builddir)/build/AddIns/MonoDevelop.SourceEditor2.dll \
	$(top_builddir)/build/bin/ICSharpCode.NRefactory.dll \
	$(top_builddir)/build/bin/Mono.Debugging.dll \
	$(top_builddir)/build/bin/Mono.TextEditor.dll \
	$(top_builddir)/build/bin/MonoDevelop.Core.dll \
	$(top_builddir)/build/bin/MonoDevelop.Ide.dll

REFS =  \
	$(GLADE_SHARP_LIBS) \
	$(GLIB_SHARP_LIBS) \
	$(GTK_SHARP_LIBS) \
	$(MONO_ADDINS_LIBS) \
	-r:Mono.Posix \
	-r:System \
	-r:System.Core \
	-r:System.Data \
	-r:System.Xml

FILES =  \
	AssemblyInfo.cs \
	gtk-gui/generated.cs \
	gtk-gui/MonoDevelop.Xml.Formatting.XmlFormattingPolicyPanelWidget.cs \
	gtk-gui/MonoDevelop.XmlEditor.Gui.XmlEditorOptionsPanelWidget.cs \
	gtk-gui/MonoDevelop.XmlEditor.Gui.XmlSchemasPanelWidget.cs \
	MonoDevelop.Xml.Formatting/XmlFormatter.cs \
	MonoDevelop.Xml.Formatting/XmlFormatterWriter.cs \
	MonoDevelop.Xml.Formatting/XmlFormattingPolicy.cs \
	MonoDevelop.Xml.Formatting/XmlFormattingPolicyPanel.cs \
	MonoDevelop.Xml.Formatting/XmlFormattingPolicyPanelWidget.cs \
	MonoDevelop.Xml.StateEngine/Parser.cs \
	MonoDevelop.Xml.StateEngine/State.cs \
	MonoDevelop.Xml.StateEngine/XDom.cs \
	MonoDevelop.Xml.StateEngine/XmlAttributeState.cs \
	MonoDevelop.Xml.StateEngine/XmlAttributeValueState.cs \
	MonoDevelop.Xml.StateEngine/XmlCDataState.cs \
	MonoDevelop.Xml.StateEngine/XmlChar.cs \
	MonoDevelop.Xml.StateEngine/XmlClosingTagState.cs \
	MonoDevelop.Xml.StateEngine/XmlCommentState.cs \
	MonoDevelop.Xml.StateEngine/XmlDocTypeState.cs \
	MonoDevelop.Xml.StateEngine/XmlFreeState.cs \
	MonoDevelop.Xml.StateEngine/XmlMalformedTagState.cs \
	MonoDevelop.Xml.StateEngine/XmlNameState.cs \
	MonoDevelop.Xml.StateEngine/XmlParsedDocument.cs \
	MonoDevelop.Xml.StateEngine/XmlProcessingInstructionState.cs \
	MonoDevelop.Xml.StateEngine/XmlTagState.cs \
	MonoDevelop.XmlEditor.Completion/EmptyXmlCompletionProvider.cs \
	MonoDevelop.XmlEditor.Completion/ILazilyLoadedProvider.cs \
	MonoDevelop.XmlEditor.Completion/InferredXmlCompletionProvider.cs \
	MonoDevelop.XmlEditor.Completion/IXmlCompletionProvider.cs \
	MonoDevelop.XmlEditor.Completion/LocalOnlyXmlResolver.cs \
	MonoDevelop.XmlEditor.Completion/XmlCompletionData.cs \
	MonoDevelop.XmlEditor.Completion/XmlCompletionDataList.cs \
	MonoDevelop.XmlEditor.Completion/XmlMultipleClosingTagCompletionData.cs \
	MonoDevelop.XmlEditor.Completion/XmlNamespacePrefixMap.cs \
	MonoDevelop.XmlEditor.Completion/XmlSchemaCompletionData.cs \
	MonoDevelop.XmlEditor.Completion/XmlSchemaCompletionDataCollection.cs \
	MonoDevelop.XmlEditor.Completion/XmlTagCompletionData.cs \
	MonoDevelop.XmlEditor.Gui/BaseXmlEditorExtension.cs \
	MonoDevelop.XmlEditor.Gui/XmlEditorOptionsPanel.cs \
	MonoDevelop.XmlEditor.Gui/XmlEditorOptionsPanelWidget.cs \
	MonoDevelop.XmlEditor.Gui/XmlSchemasPanel.cs \
	MonoDevelop.XmlEditor.Gui/XmlSchemasPanelWidget.cs \
	MonoDevelop.XmlEditor/Commands.cs \
	MonoDevelop.XmlEditor/EncodedStringWriter.cs \
	MonoDevelop.XmlEditor/QualifiedName.cs \
	MonoDevelop.XmlEditor/QualifiedNameCollection.cs \
	MonoDevelop.XmlEditor/XmlDocumentParser.cs \
	MonoDevelop.XmlEditor/XmlEditorOptions.cs \
	MonoDevelop.XmlEditor/XmlEditorService.cs \
	MonoDevelop.XmlEditor/XmlElementPath.cs \
	MonoDevelop.XmlEditor/XmlFileAssociation.cs \
	MonoDevelop.XmlEditor/XmlFileAssociationManager.cs \
	MonoDevelop.XmlEditor/XmlFileAssociationNode.cs \
	MonoDevelop.XmlEditor/XmlNamespace.cs \
	MonoDevelop.XmlEditor/XmlParser.cs \
	MonoDevelop.XmlEditor/XmlSchemaManager.cs \
	MonoDevelop.XmlEditor/XmlSchemaNode.cs \
	MonoDevelop.XmlEditor/XmlTextEditorExtension.cs

DATA_FILES =  \
	schemas/appconfig.xsd \
	schemas/manifest.xsd \
	schemas/MonoDevelopAddIn.xsd \
	schemas/nant.xsd \
	schemas/readme.txt \
	schemas/W3C-License.html \
	schemas/XMLSchema.xsd \
	schemas/xslt.xsd

RES =  \
	gtk-gui/gui.stetic \
	gtk-gui/objects.xml \
	MonoDevelop.Xml.Formatting/MonoXmlPolicy.xml \
	MonoDevelop.XmlEditor.addin.xml


DATA_FILE_BUILD = $(addprefix $(ADDIN_BUILD)/schemas/, $(notdir $(DATA_FILES)))

all: $(ASSEMBLY) $(ASSEMBLY).mdb $(DATA_FILE_BUILD)

$(DATA_FILE_BUILD): $(srcdir)$(subst $(ADDIN_BUILD),, $@)
	mkdir -p $(ADDIN_BUILD)/schemas
	cp $(srcdir)/$(subst $(ADDIN_BUILD),,$@) $@

$(ASSEMBLY): $(build_sources) $(build_resources) $(DEPS)
	mkdir -p $(ADDIN_BUILD)
	$(CSC) $(CSC_FLAGS) $(REFS) $(build_deps) $(build_resources:%=/resource:%) $(build_sources) -out:$@ -target:library

$(ASSEMBLY).mdb: $(ASSEMBLY)

assemblydir = $(MD_ADDIN_DIR)/MonoDevelop.XmlEditor
assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).mdb

schemadir = $(MD_ADDIN_DIR)/MonoDevelop.XmlEditor/schemas
schema_DATA = $(DATA_FILES)

CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb $(DATA_FILE_BUILD)
EXTRA_DIST = $(FILES) $(RES) $(DATA_FILES)

include $(top_srcdir)/Makefile.include