~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to Thunderbird/Makefile.am

  • Committer: David Siegel
  • Date: 2008-01-24 04:48:52 UTC
  • Revision ID: dave@ja7gggggggg9-20080124044852-9vnlo01h9kkyz12a
Added Epiphany plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS = src
 
2
 
 
3
ASSEMBLY_NAME=Thunderbird
 
4
 
 
5
EXTRA_DIST=$(ASSEMBLY_NAME).mdp
 
6
 
 
7
ASSEMBLY=$(ASSEMBLY_NAME).dll
 
8
 
 
9
CSFLAGS+= -debug+ -debug:full
 
10
 
 
11
CLEANFILES = $(ASSEMBLY){,.mdb}
 
12
 
 
13
thunderbird_references = $(DO_ADDINS_LIBS)
 
14
 
 
15
thunderbird_sources =   \
 
16
                        AssemblyInfo.cs \
 
17
                        Mork.cs \
 
18
                        ThunderbirdContactItemSource.cs
 
19
 
 
20
thunderbird_build_sources = $(addprefix $(srcdir)/src/, $(thunderbird_sources))
 
21
 
 
22
plugin_DATA = $(ASSEMBLY)
 
23
 
 
24
all: $(ASSEMBLY)
 
25
 
 
26
$(ASSEMBLY): $(thunderbird_build_sources)
 
27
        $(CSC) $(CSFLAGS) $(thunderbird_references) -target:library -out:$@ $(thunderbird_build_sources)