aboutsummaryrefslogtreecommitdiffstats
path: root/shell/importer/Makefile.am
blob: f4a4b532a7db5e594b4a90a26b261fc38cf2745d (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
INCLUDES =                  \
    -I$(top_srcdir)             \
    -I$(top_srcdir)/shell           \
    -I$(top_builddir)/shell         \
    -I$(includedir)             \
    $(EXTRA_GNOME_CFLAGS)           \
    -DG_LOG_DOMAIN=\"Evolution-Importer\"   \
    -DEVOLUTION_GLADEDIR=\"$(datadir)/evolution/glade\"

lib_LTLIBRARIES = libevolution-importer.la

IDLS = \
    GNOME_Evolution_Importer.idl

IDL_GENERATED =     \
    GNOME_Evolution_Importer.h  \
    GNOME_Evolution_Importer-common.c   \
    GNOME_Evolution_Importer-skels.c    \
    GNOME_Evolution_Importer-stubs.c

GNOME_Evolution_Importer-impl.o: GNOME_Evolution_Importer.h

$(IDL_GENERATED): $(IDLS)
    $(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl `$(GNOME_CONFIG) --cflags idl`  \
        $(srcdir)/GNOME_Evolution_Importer.idl

idldir = $(datadir)/idl
idl_DATA = $(IDLS)

libevolution_importerincludedir = $(includedir)/evolution/importer
libevolution_importer_la_SOURCES =  \
    $(IDL_GENERATED)        \
    evolution-intelligent-importer.c    \
    evolution-importer-client.c \
    evolution-importer-listener.c   \
    evolution-importer.c        \
    intelligent.c           \
    intelligent.h

libevolution_importerinclude_HEADERS =  \
    GNOME_Evolution_Importer.h  \
    evolution-intelligent-importer.h    \
    evolution-importer-client.h \
    evolution-importer-listener.h   \
    evolution-importer.h

libevolution_importer_la_LIBADD =   \
    $(top_builddir)/e-util/libeutil.la  \
    $(BONOBO_CONF_LIBS)         \
    $(EXTRA_GNOME_LIBS)     \
    $(GTKHTML_LIBS)

gladedir = $(datadir)/evolution/glade
glade_DATA = import.glade

EXTRA_DIST = $(glade_DATA) $(IDLS)

BUILT_SOURCES=$(IDL_GENERATED)
CLEANFILES += $(BUILT_SOURCES)
dist-hook:
    cd $(distdir); rm -f $(BUILT_SOURCES)