~ubuntu-branches/ubuntu/trusty/mono-addins/trusty-proposed

« back to all changes in this revision

Viewing changes to Samples/TextEditorLib/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-04-25 11:11:33 UTC
  • mfrom: (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110425111133-t05u5p7o5fxx70fu
Tags: 0.6-2
Upload to Unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
ASSEMBLY_COMPILER_COMMAND = mcs
2
 
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -debug -d:DEBUG
3
 
ASSEMBLY = ../bin/TextEditorLib.dll
4
 
COMPILE_TARGET = library
5
 
PROJECT_REFERENCES =  \
6
 
        ../../bin/Mono.Addins.dll \
7
 
        ../../bin/Mono.Addins.Gui.dll
8
 
BUILD_DIR = ../bin
9
 
 
10
 
        
11
 
if ENABLE_GUI
12
 
all: $(ASSEMBLY)
13
 
endif
14
 
 
15
 
FILES =  \
16
 
        AssemblyInfo.cs \
17
 
        Commands/CopyCommand.cs \
18
 
        Commands/CutCommand.cs \
19
 
        Commands/ExitCommand.cs \
20
 
        Commands/NewCommand.cs \
21
 
        Commands/OpenCommand.cs \
22
 
        Commands/PasteCommand.cs \
23
 
        Commands/SaveCommand.cs \
24
 
        Commands/SetupCommand.cs \
25
 
        ExtensionNodes/FileTemplateNode.cs \
26
 
        ExtensionNodes/MenuItemNode.cs \
27
 
        ExtensionNodes/MenuNode.cs \
28
 
        ExtensionNodes/MenuSeparatorNode.cs \
29
 
        ExtensionNodes/SubmenuNode.cs \
30
 
        ExtensionNodes/TemplateCategoryNode.cs \
31
 
        ExtensionNodes/ToolbarNode.cs \
32
 
        ExtensionNodes/ToolButtonNode.cs \
33
 
        ExtensionNodes/ToolSeparatorNode.cs \
34
 
        gtk-gui/generated.cs \
35
 
        gtk-gui/MainWindow.cs \
36
 
        ICommand.cs \
37
 
        MainWindow.cs \
38
 
        OpenFileCondition.cs \
39
 
        TextEditorApp.cs 
40
 
 
41
 
DATA_FILES = 
42
 
 
43
 
RESOURCES =  \
44
 
        gtk-gui/gui.stetic \
45
 
        Templates/ChangeLogTemplate.txt \
46
 
        Templates/DotConfigTemplate.txt \
47
 
        Templates/TextEditor.addin.xml \
48
 
        Templates/WorkReport.txt 
49
 
 
50
 
EXTRAS = 
51
 
 
52
 
REFERENCES =  \
53
 
        -pkg:gtk-sharp-2.0 \
54
 
        -r:Mono.Posix \
55
 
        -r:System
56
 
 
57
 
DLL_REFERENCES = 
58
 
 
59
 
$(ASSEMBLY) $(ASSEMBLY).mdb: $(build_sources) $(build_resources) $(build_datafiles) 
60
 
        mkdir -p $(dir $(ASSEMBLY))             
61
 
 
62
 
        $(ASSEMBLY_COMPILER_COMMAND) $(ASSEMBLY_COMPILER_FLAGS) -out:$@ -target:$(COMPILE_TARGET) $(build_sources) $(build_resources_embed) $(build_references_ref)
63
 
 
64
 
if ENABLE_GUI
65
 
include $(top_srcdir)/makefile-sample.include
66
 
endif