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

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Gettext/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/DisplayBindings/Gettext
3
 
ASSEMBLY = $(ADDIN_BUILD)/MonoDevelop.Gettext.dll
4
 
 
5
 
DEPS =  \
6
 
        $(top_builddir)/build/AddIns/MonoDevelop.Autotools/MonoDevelop.Autotools.dll \
7
 
        $(top_builddir)/build/AddIns/MonoDevelop.Deployment/MonoDevelop.Deployment.dll \
8
 
        $(top_builddir)/build/AddIns/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport.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
 
 
14
 
REFS =  \
15
 
        $(GLIB_SHARP_LIBS) \
16
 
        $(GTK_SHARP_LIBS) \
17
 
        $(MONO_ADDINS_LIBS) \
18
 
        -r:Mono.Posix \
19
 
        -r:System \
20
 
        -r:System.Core \
21
 
        -r:System.Xml
22
 
 
23
 
FILES =  \
24
 
        AssemblyInfo.cs \
25
 
        Commands.cs \
26
 
        gtk-gui/generated.cs \
27
 
        gtk-gui/MonoDevelop.Gettext.Editor.CatalogHeadersWidget.cs \
28
 
        gtk-gui/MonoDevelop.Gettext.GettextFeatureWidget.cs \
29
 
        gtk-gui/MonoDevelop.Gettext.POEditorWidget.cs \
30
 
        gtk-gui/MonoDevelop.Gettext.TranslationProjectOptionsDialog.cs \
31
 
        gtk-gui/MonoDevelop.Gettext.Translator.LanguageChooserDialog.cs \
32
 
        MonoDevelop.Gettext.Editor/CatalogEditorView.cs \
33
 
        MonoDevelop.Gettext.Editor/CatalogHeadersWidget.cs \
34
 
        MonoDevelop.Gettext.Editor/GettextEditorDisplayBinding.cs \
35
 
        MonoDevelop.Gettext.Editor/GtkSpell.cs \
36
 
        MonoDevelop.Gettext.Editor/POEditorWidget.cs \
37
 
        MonoDevelop.Gettext.ExtensionNodes/ExcludeRegex.cs \
38
 
        MonoDevelop.Gettext.ExtensionNodes/IncludeExtensionNode.cs \
39
 
        MonoDevelop.Gettext.ExtensionNodes/RegexScannerExtensionNode.cs \
40
 
        MonoDevelop.Gettext.ExtensionNodes/TransformExtensionNode.cs \
41
 
        MonoDevelop.Gettext.ExtensionNodes/XmlRegexScannerExtensionNode.cs \
42
 
        MonoDevelop.Gettext.NodeBuilders/ProjectFileNodeBuilderExtension.cs \
43
 
        MonoDevelop.Gettext.NodeBuilders/TranslationNodeBuilder.cs \
44
 
        MonoDevelop.Gettext.NodeBuilders/TranslationProjectNodeBuilder.cs \
45
 
        MonoDevelop.Gettext.Translator/LanguageChooserDialog.cs \
46
 
        MonoDevelop.Gettext/Catalog.cs \
47
 
        MonoDevelop.Gettext/CatalogDeletedEntry.cs \
48
 
        MonoDevelop.Gettext/CatalogEntry.cs \
49
 
        MonoDevelop.Gettext/CatalogParser.cs \
50
 
        MonoDevelop.Gettext/GettextFeature.cs \
51
 
        MonoDevelop.Gettext/GettextFeatureWidget.cs \
52
 
        MonoDevelop.Gettext/GettextTool.cs \
53
 
        MonoDevelop.Gettext/IFileScanner.cs \
54
 
        MonoDevelop.Gettext/IsoCodes.cs \
55
 
        MonoDevelop.Gettext/MakefileHandler.cs \
56
 
        MonoDevelop.Gettext/PluralForms.cs \
57
 
        MonoDevelop.Gettext/PropertyProvider.cs \
58
 
        MonoDevelop.Gettext/RegexFileScanner.cs \
59
 
        MonoDevelop.Gettext/StringEscaping.cs \
60
 
        MonoDevelop.Gettext/Translation.cs \
61
 
        MonoDevelop.Gettext/TranslationCollection.cs \
62
 
        MonoDevelop.Gettext/TranslationProject.cs \
63
 
        MonoDevelop.Gettext/TranslationProjectOptionsDialog.cs \
64
 
        MonoDevelop.Gettext/TranslationService.cs
65
 
 
66
 
RES =  \
67
 
        gtk-gui/gui.stetic \
68
 
        icons/gettext-overlay-16.png \
69
 
        icons/gettext-overlay-32.png \
70
 
        icons/locale_16x16.png \
71
 
        icons/locale_22x22.png \
72
 
        icons/locale_32x32.png \
73
 
        icons/silk_accept.png \
74
 
        icons/silk_error.png \
75
 
        icons/silk_exclamation.png \
76
 
        icons/translation-fuzzy-16.png \
77
 
        icons/translation-missing-16.png \
78
 
        icons/translation-valid-16.png \
79
 
        MonoDevelop.Gettext.addin.xml \
80
 
        templates/Makefile.am.template \
81
 
        templates/Makefile.template \
82
 
        templates/TranslationProject.xpt.xml
83
 
 
84
 
all: $(ASSEMBLY) $(ASSEMBLY).mdb
85
 
 
86
 
$(ADDIN_BUILD)/%: $(srcdir)/lib/%
87
 
        mkdir -p $(ADDIN_BUILD)
88
 
        cp $< $@
89
 
 
90
 
$(ASSEMBLY): $(build_sources) $(build_resources) $(DEPS)
91
 
        mkdir -p $(ADDIN_BUILD)
92
 
        $(CSC) $(CSC_FLAGS) $(REFS) $(build_deps) $(build_resources:%=/resource:%) $(build_sources) -out:$@ -target:library
93
 
 
94
 
$(ASSEMBLY).mdb: $(ASSEMBLY)
95
 
 
96
 
assemblydir = $(MD_ADDIN_DIR)/DisplayBindings/MonoDevelop.Gettext
97
 
assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).mdb
98
 
 
99
 
CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb
100
 
EXTRA_DIST = $(FILES) $(RES)
101
 
 
102
 
include $(top_srcdir)/Makefile.include
 
1
include $(top_srcdir)/xbuild.include