~ubuntu-branches/ubuntu/karmic/mono-addins/karmic

« back to all changes in this revision

Viewing changes to Samples/WriterService.SampleExtender/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Mirco Bauer
  • Date: 2007-07-14 12:07:48 UTC
  • Revision ID: james.westby@ubuntu.com-20070714120748-2elczfsjlrdsrpms
Tags: upstream-0.2
ImportĀ upstreamĀ versionĀ 0.2

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/SampleExtender.dll
 
4
COMPILE_TARGET = library
 
5
PROJECT_REFERENCES = ../bin/WriterService.dll
 
6
BUILD_DIR = ../bin
 
7
 
 
8
        
 
9
all: $(ASSEMBLY)
 
10
 
 
11
FILES =  \
 
12
        AssemblyInfo.cs \
 
13
        MyWriter.cs 
 
14
 
 
15
DATA_FILES = 
 
16
 
 
17
RESOURCES = SampleExtender.addin.xml 
 
18
 
 
19
EXTRAS = 
 
20
 
 
21
REFERENCES = -r:System
 
22
 
 
23
DLL_REFERENCES = 
 
24
 
 
25
$(ASSEMBLY) $(ASSEMBLY).mdb: $(build_sources) $(build_resources) $(build_datafiles) 
 
26
        mkdir -p $(dir $(ASSEMBLY))             
 
27
 
 
28
        $(ASSEMBLY_COMPILER_COMMAND) $(ASSEMBLY_COMPILER_FLAGS) -out:$@ -target:$(COMPILE_TARGET) $(build_sources) $(build_resources_embed) $(build_references_ref)
 
29
 
 
30
include $(top_srcdir)/makefile-sample.include