3
ASSEMBLY_NAME=Thunderbird
5
EXTRA_DIST=$(ASSEMBLY_NAME).mdp
7
ASSEMBLY=$(ASSEMBLY_NAME).dll
9
CSFLAGS+= -debug+ -debug:full
11
CLEANFILES = $(ASSEMBLY){,.mdb}
13
thunderbird_references = $(DO_ADDINS_LIBS)
15
thunderbird_sources = \
18
ThunderbirdContactItemSource.cs
20
thunderbird_build_sources = $(addprefix $(srcdir)/src/, $(thunderbird_sources))
22
plugin_DATA = $(ASSEMBLY)
26
$(ASSEMBLY): $(thunderbird_build_sources)
27
$(CSC) $(CSFLAGS) $(thunderbird_references) -target:library -out:$@ $(thunderbird_build_sources)