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

« back to all changes in this revision

Viewing changes to mautil/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
 
 
2
ASSEMBLY_COMPILER_COMMAND = mcs
 
3
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -debug -d:DEBUG
 
4
ASSEMBLY = ../bin/mautil.exe
 
5
COMPILE_TARGET = exe
 
6
ASSEMBLY_WRAPPER = mautil
 
7
ASSEMBLY_WRAPPER_IN = mautil.in
 
8
PROJECT_REFERENCES =  \
 
9
        ../bin/Mono.Addins.dll \
 
10
        ../bin/Mono.Addins.Setup.dll
 
11
BUILD_DIR = ../bin
 
12
 
 
13
        
 
14
all: $(ASSEMBLY)
 
15
 
 
16
FILES =  \
 
17
        AssemblyInfo.cs \
 
18
        Main.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
include $(top_srcdir)/Makefile.include