~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to Epiphany/Makefile.am

  • Committer: Richard Harding
  • Date: 2008-03-22 02:36:12 UTC
  • Revision ID: rharding@traken-20080322023612-1k329velnao3h83m
 * correct the source header of the AptUrl plugin 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
EXTRA_DIST =  
3
 
 
4
 
# Warning: This is an automatically generated file, do not edit!
5
 
 
6
 
if ENABLE_DEBUG
7
 
ASSEMBLY_COMPILER_COMMAND = gmcs
8
 
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+ -debug "-define:DEBUG"
9
 
 
10
 
ASSEMBLY = bin/Debug/Epiphany.dll
11
 
ASSEMBLY_MDB = $(ASSEMBLY).mdb
12
 
COMPILE_TARGET = library
13
 
PROJECT_REFERENCES = 
14
 
BUILD_DIR = bin/Debug
15
 
 
16
 
EPIPHANY_ADDIN_XML_SOURCE=src/Epiphany.addin.xml
17
 
 
18
 
endif
19
 
 
20
 
if ENABLE_RELEASE
21
 
ASSEMBLY_COMPILER_COMMAND = gmcs
22
 
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+
23
 
ASSEMBLY = bin/Release/Epiphany.dll
24
 
ASSEMBLY_MDB = 
25
 
COMPILE_TARGET = library
26
 
PROJECT_REFERENCES = 
27
 
BUILD_DIR = bin/Release
28
 
 
29
 
EPIPHANY_ADDIN_XML_SOURCE=src/Epiphany.addin.xml
30
 
 
31
 
endif
32
 
 
33
 
if ENABLE_REPO
34
 
ASSEMBLY_COMPILER_COMMAND = gmcs
35
 
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+ -debug "-define:DEBUG"
36
 
 
37
 
ASSEMBLY = ../buildrepo/Epiphany.dll
38
 
ASSEMBLY_MDB = $(ASSEMBLY).mdb
39
 
COMPILE_TARGET = library
40
 
PROJECT_REFERENCES = 
41
 
BUILD_DIR = ../buildrepo
42
 
 
43
 
EPIPHANY_ADDIN_XML_SOURCE=src/Epiphany.addin.xml
44
 
 
45
 
endif
46
 
 
47
 
AL=al2
48
 
SATELLITE_ASSEMBLY_NAME=.resources.dll
49
 
 
50
 
PROGRAMFILES = \
51
 
        $(EPIPHANY_ADDIN_XML)  
52
 
 
53
 
LINUX_PKGCONFIG = \
54
 
        $(EPIPHANY_PC)  
55
 
 
56
 
 
57
 
        
58
 
all: $(ASSEMBLY) $(PROGRAMFILES) $(LINUX_PKGCONFIG) 
59
 
 
60
 
FILES = \
61
 
        src/EpiphanyBookmarkItemSource.cs 
62
 
 
63
 
DATA_FILES = \
64
 
        src/Epiphany.addin.xml 
65
 
 
66
 
RESOURCES = 
67
 
 
68
 
EXTRAS = \
69
 
        epiphany.pc.in 
70
 
 
71
 
REFERENCES =  \
72
 
        System \
73
 
        System.Xml \
74
 
        $(DOADDINS_LIBS)
75
 
 
76
 
DLL_REFERENCES = 
77
 
 
78
 
CLEANFILES = $(PROGRAMFILES) $(LINUX_PKGCONFIG) 
79
 
 
80
 
include $(top_srcdir)/Makefile.include
81
 
 
82
 
EPIPHANY_PC = $(BUILD_DIR)/epiphany.pc
83
 
EPIPHANY_ADDIN_XML = $(BUILD_DIR)/Epiphany.addin.xml
84
 
 
85
 
$(eval $(call emit-deploy-wrapper,EPIPHANY_PC,epiphany.pc))
86
 
$(eval $(call emit-deploy-target,EPIPHANY_ADDIN_XML))
87
 
 
88
 
 
89
 
$(build_xamlg_list): %.xaml.g.cs: %.xaml
90
 
        xamlg '$<'
91
 
 
92
 
$(build_resx_resources) : %.resources: %.resx
93
 
        resgen2 '$<' '$@'
94
 
 
95
 
$(ASSEMBLY) $(ASSEMBLY_MDB): $(build_sources) $(build_resources) $(build_datafiles) $(DLL_REFERENCES) $(PROJECT_REFERENCES) $(build_xamlg_list) $(build_satellite_assembly_list)
96
 
        mkdir -p $(dir $(ASSEMBLY))
97
 
        $(ASSEMBLY_COMPILER_COMMAND) $(ASSEMBLY_COMPILER_FLAGS) -out:$(ASSEMBLY) -target:$(COMPILE_TARGET) $(build_sources_embed) $(build_resources_embed) $(build_references_ref)
 
1
EXTRA_DIST = EpiphanyBookmarkItemSource.cs
 
2
 
 
3
ASSEMBLY_NAME=Epiphany
 
4
ASSEMBLY=$(ASSEMBLY_NAME).dll
 
5
 
 
6
CSFLAGS+= -debug+ -debug:full
 
7
 
 
8
CLEANFILES = $(ASSEMBLY){,.mdb}
 
9
 
 
10
epiphany_references = $(DO_ADDINS_LIBS)
 
11
 
 
12
epiphany_sources  =     \
 
13
                        EpiphanyBookmarkItemSource.cs
 
14
 
 
15
epiphany_build_sources = $(addprefix $(srcdir)/, $(epiphany_sources))
 
16
 
 
17
plugin_DATA = $(ASSEMBLY)
 
18
 
 
19
all: $(ASSEMBLY)
 
20
 
 
21
$(ASSEMBLY): $(epiphany_sources)
 
22
        $(CSC) $(CSFLAGS) $(epiphany_references) -target:library -out:$@ $(epiphany_build_sources)