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

« back to all changes in this revision

Viewing changes to external/mono-addins/Test/CommandExtension/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/CommandExtension.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 = CommandExtensionNode.cs 
 
16
 
 
17
DATA_FILES = CommandExtension.addin.xml 
 
18
 
 
19
RESOURCES = 
 
20
 
 
21
EXTRAS = 
 
22
 
 
23
REFERENCES = -r:System
 
24
 
 
25
DLL_REFERENCES = 
 
26
 
 
27
$(ASSEMBLY).mdb: $(ASSEMBLY)
 
28
 
 
29
$(ASSEMBLY): $(build_sources) $(build_resources) $(build_datafiles) 
 
30
        mkdir -p $(dir $(ASSEMBLY))             
 
31
 
 
32
        $(ASSEMBLY_COMPILER_COMMAND) $(ASSEMBLY_COMPILER_FLAGS) -out:$@ -target:$(COMPILE_TARGET) $(build_sources) $(build_resources_embed) $(build_references_ref)
 
33
 
 
34
if ENABLE_TESTS
 
35
include $(top_srcdir)/makefile-sample.include
 
36
endif