aboutsummaryrefslogtreecommitdiffstats
path: root/mail/importers/Makefile.am
blob: e1cae100cf17fcc900e27af17a2ef10105bc87e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
importersdir = $(privlibdir)/evolution-mail-importers

importers_LTLIBRARIES = liboutlook.la libmbox.la

INCLUDES = -I..                     \
    -I$(srcdir)/..                  \
    -I$(top_srcdir)                 \
    -I$(top_srcdir)/shell               \
    -I$(top_builddir)/shell             \
    -I$(includedir)                 \
    -DG_LOG_DOMAIN=\"evolution-mail-importer\"  \
    $(IMPORTERS_CFLAGS)

liboutlook_la_SOURCES =             \
    evolution-outlook-importer.c
liboutlook_la_LDFLAGS = -avoid-version -module

libmbox_la_SOURCES = evolution-mbox-importer.c \
             mozilla-status-headers.h
libmbox_la_LDFLAGS = -avoid-version -module

serverdir = $(datadir)/bonobo/servers
server_in_files = GNOME_Evolution_Mail_Mbox_Importer.server.in.in   \
    GNOME_Evolution_Mail_Outlook_Importer.server.in.in
server_DATA = $(server_in_files:.server.in.in=.server)
$(server_in_files:.server.in.in=.server.in): $(server_in_files)
    sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|" $< > $@

EXTRA_DIST = $(server_in_files) $(server_DATA)

@INTLTOOL_SERVER_RULE@