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

« back to all changes in this revision

Viewing changes to Samples/TextEditor.CompilerService.CSharp/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
 
 
2
 
ASSEMBLY_COMPILER_COMMAND = mcs
3
 
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -debug -d:DEBUG
4
 
ASSEMBLY = ../bin/TextEditor.CompilerService.CSharp.dll
5
 
COMPILE_TARGET = library
6
 
PROJECT_REFERENCES =  \
7
 
        ../../bin/Mono.Addins.dll \
8
 
        ../bin/TextEditor.CompilerService.dll
9
 
BUILD_DIR = ../bin
10
 
 
11
 
        
12
 
if ENABLE_GUI
13
 
all: $(ASSEMBLY)
14
 
endif
15
 
 
16
 
FILES =  \
17
 
        AssemblyInfo.cs \
18
 
        CSharpCompiler.cs 
19
 
 
20
 
DATA_FILES = 
21
 
 
22
 
RESOURCES = 
23
 
 
24
 
EXTRAS = 
25
 
 
26
 
REFERENCES = -r:System
27
 
 
28
 
DLL_REFERENCES = 
29
 
 
30
 
$(ASSEMBLY) $(ASSEMBLY).mdb: $(build_sources) $(build_resources) $(build_datafiles) 
31
 
        mkdir -p $(dir $(ASSEMBLY))             
32
 
 
33
 
        $(ASSEMBLY_COMPILER_COMMAND) $(ASSEMBLY_COMPILER_FLAGS) -out:$@ -target:$(COMPILE_TARGET) $(build_sources) $(build_resources_embed) $(build_references_ref)
34
 
 
35
 
if ENABLE_GUI
36
 
include $(top_srcdir)/makefile-sample.include
37
 
endif