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))
24
$(ASSEMBLY): $(thunderbird_build_sources)
25
$(CSC) $(CSFLAGS) $(thunderbird_references) -target:library -out:$@ $(thunderbird_build_sources)
27
install-exec-local: $(ASSEMBLY)
28
mkdir -p $(plugin_path)
29
install -m 644 $(ASSEMBLY) $(plugin_path)
32
rm $(plugin_path)/$(ASSEMBLY)