diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2005-05-12 19:25:45 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-05-12 19:25:45 +0800 |
commit | d31092e263286b346d5ecc36a5f06932fe545d79 (patch) | |
tree | 1cbe6ea9d974f3ad18dac3ab7896c2a21f00dc72 /plugins/mail-remote/Makefile.am | |
parent | c579bfe5de0884d5cc1436b608eee80816a050ed (diff) | |
download | gsoc2013-evolution-d31092e263286b346d5ecc36a5f06932fe545d79.tar gsoc2013-evolution-d31092e263286b346d5ecc36a5f06932fe545d79.tar.gz gsoc2013-evolution-d31092e263286b346d5ecc36a5f06932fe545d79.tar.bz2 gsoc2013-evolution-d31092e263286b346d5ecc36a5f06932fe545d79.tar.lz gsoc2013-evolution-d31092e263286b346d5ecc36a5f06932fe545d79.tar.xz gsoc2013-evolution-d31092e263286b346d5ecc36a5f06932fe545d79.tar.zst gsoc2013-evolution-d31092e263286b346d5ecc36a5f06932fe545d79.zip |
Now compiles, with a test client too.
svn path=/trunk/; revision=29338
Diffstat (limited to 'plugins/mail-remote/Makefile.am')
-rw-r--r-- | plugins/mail-remote/Makefile.am | 44 |
1 files changed, 33 insertions, 11 deletions
diff --git a/plugins/mail-remote/Makefile.am b/plugins/mail-remote/Makefile.am index 25653f666b..6f0601b541 100644 --- a/plugins/mail-remote/Makefile.am +++ b/plugins/mail-remote/Makefile.am @@ -1,4 +1,35 @@ +INCLUDES = \ + -I$(top_srcdir) \ + $(EVOLUTION_MAIL_CFLAGS) + +@EVO_PLUGIN_RULE@ + +plugin_DATA = org-gnome-evolution-mail-remote.eplug +plugin_LTLIBRARIES = liborg-gnome-evolution-mail-remote.la + +liborg_gnome_evolution_mail_remote_la_SOURCES = \ + $(IDL_GENERATED_C) \ + $(IDL_GENERATED_H) \ + evolution-mail-folder.c \ + evolution-mail-folder.h \ + evolution-mail-session.c \ + evolution-mail-session.h \ + evolution-mail-store.c \ + evolution-mail-store.h \ + mail-remote.c + +liborg_gnome_evolution_mail_remote_la_LDFLAGS = -module -avoid-version + +client_SOURCES = \ + client.c + +client_LDADD = \ + $(EVOLUTION_MAIL_LIBS) \ + liborg-gnome-evolution-mail-remote.la + +noinst_PROGRAMS = \ + client # mail idl @@ -17,19 +48,10 @@ $(IDL_GENERATED_H) $(IDL_GENERATED_C): $(IDL) # installed idls -idl_DATA = $(IDL) - -_SOURCES = \ - $(IDL_GENERATED_C) \ - $(IDL_GENERATED_H) \ - evolution-mail-folder.c \ - evolution-mail-folder.h \ - evolution-mail-session.c \ - evolution-mail-session.h \ - evolution-mail-store.c \ - evolution-mail-store.h +#idl_DATA = $(IDL) EXTRA_DIST = \ $(IDL) BUILT_SOURCES = $(IDL_GENERATED_H) $(IDL_GENERATED_C) +CLEANFILES = $(BUILT_SOURCES) |