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

« back to all changes in this revision

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