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

« back to all changes in this revision

Viewing changes to .pc/configurable_compiler.patch/Mono.Addins.MSBuild/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
KEY_FILE=$(top_srcdir)/mono-addins.snk
 
3
ASSEMBLY_COMPILER_COMMAND = gmcs
 
4
ASSEMBLY_COMPILER_FLAGS = -keyfile:$(KEY_FILE) -noconfig -codepage:utf8 -warn:4 -debug -d:DEBUG
 
5
ASSEMBLY = ../bin/Mono.Addins.MSBuild.dll
 
6
ASSEMBLY_NAME=Mono.Addins.MSBuild
 
7
COMPILE_TARGET = library
 
8
PC_FILES_IN = mono-addins-msbuild.pc.in
 
9
PROJECT_REFERENCES =  \
 
10
        ../bin/Mono.Addins.dll \
 
11
        ../bin/Mono.Addins.Setup.dll
 
12
BUILD_DIR = ../bin
 
13
 
 
14
        
 
15
all: $(ASSEMBLY)
 
16
 
 
17
FILES =  \
 
18
        AssemblyInfo.cs \
 
19
        ResolveAddinReferences.cs
 
20
 
 
21
DATA_FILES = 
 
22
 
 
23
RESOURCES = 
 
24
 
 
25
EXTRAS = \
 
26
        ./Makefile.am \
 
27
        ./Mono.Addins.targets
 
28
 
 
29
REFERENCES =  \
 
30
        -r:Microsoft.Build.Framework \
 
31
        -r:Microsoft.Build.Utilities \
 
32
        -r:System
 
33
 
 
34
DLL_REFERENCES = 
 
35
 
 
36
$(ASSEMBLY).mdb: $(ASSEMBLY)
 
37
 
 
38
$(ASSEMBLY): $(build_sources) $(build_resources) $(build_datafiles) $(POLICY_ASSEMBLIES)
 
39
        mkdir -p $(dir $(ASSEMBLY))             
 
40
        $(ASSEMBLY_COMPILER_COMMAND) $(ASSEMBLY_COMPILER_FLAGS) -out:$@ -target:$(COMPILE_TARGET) $(build_sources) $(build_resources_embed) $(build_references_ref)
 
41
 
 
42
xbuilddir = $(libdir)/mono/xbuild
 
43
xbuild_DATA = Mono.Addins.targets
 
44
 
 
45
install-data-local: gac-install
 
46
 
 
47
uninstall-local: gac-uninstall
 
48
 
 
49
include $(top_srcdir)/Makefile.include
 
50
 
 
51
CLEANFILES += $(POLICY_ASSEMBLIES) $(POLICY_CONFIGS)