aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/templates/Makefile.am
blob: 9369c0293d1ea727d0b948f52ba0de8a48c08efc (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
INCLUDES =                      \
    -I$(top_srcdir)                 \
    -I$(top_builddir)               \
    -I$(top_builddir)/composer          \
    $(EVOLUTION_MAIL_CFLAGS)            \
    -DEVOLUTION_GLADEDIR=\""$(gladedir)"\"      \
    -DEVOLUTION_PLUGINDIR="\"$(plugindir)\""

@EVO_PLUGIN_RULE@

plugin_DATA =                   \
        org-gnome-templates.eplug   \
        templates.glade

plugin_LTLIBRARIES = liborg-gnome-templates.la

liborg_gnome_templates_la_SOURCES = templates.c
liborg_gnome_templates_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED)
liborg_gnome_templates_la_LIBADD =  \
    $(top_builddir)/e-util/libeutil.la      \
    $(top_builddir)/mail/libevolution-mail.la   \
    $(EVOLUTION_MAIL_LIBS)

schemadir       = $(GCONF_SCHEMA_FILE_DIR)
schema_in_files = apps-evolution-template-placeholders.schemas.in
schema_DATA     = $(schema_in_files:.schemas.in=.schemas)

@INTLTOOL_SCHEMAS_RULE@

install-data-local:
    if test -z "$(DESTDIR)" ; then                                                                                          \
        for p in $(schema_DATA) ; do                                                                                    \
            GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p;             \
        done                                                                                                            \
    fi

EXTRA_DIST =    org-gnome-templates.eplug.xml   \
        $(schema_in_files)      \
        templates.glade

BUILT_SOURCES = org-gnome-templates.eplug

CLEANFILES = $(BUILT_SOURCES)

DISTCLEANFILES = $(schema_DATA)