~cairo-dock-team/cairo-dock-plug-ins/experimental

« back to all changes in this revision

Viewing changes to mail/src/Makefile.am

  • Committer: tofe
  • Date: 2008-03-15 10:37:45 UTC
  • Revision ID: svn-v4:620951bb-bb42-0410-82c3-830e739ed170:trunk/plug-ins:644
nouvelle applet mail, basée sur le plugin xfce mailwatch. Pour l'instant, ne gère pas la suppresion de compte mail.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 #dnl Process this file with automake to produce Makefile.in
 
2
 
 
3
lib_LTLIBRARIES = \
 
4
        libcd-mail.la
 
5
 
 
6
 
 
7
libcd_mail_la_SOURCES = \
 
8
        applet-init.c\
 
9
        applet-init.h\
 
10
        applet-config.c\
 
11
        applet-config.h\
 
12
        applet-notifications.c\
 
13
        applet-notifications.h\
 
14
        applet-struct.h\
 
15
        mailwatch.c\
 
16
        mailwatch.h\
 
17
        mailwatch-mailbox-gmail.c\
 
18
        mailwatch-mailbox-imap.c\
 
19
        mailwatch-mailbox-pop3.c\
 
20
        mailwatch-mailbox-maildir.c\
 
21
        mailwatch-mailbox-mbox.c\
 
22
        mailwatch-mailbox-mh.c\
 
23
        mailwatch-mailbox.h\
 
24
        mailwatch-utils.c\
 
25
        mailwatch-utils.h
 
26
 
 
27
 
 
28
dock_version = `pkg-config --modversion cairo-dock`
 
29
 
 
30
libcd_mail_la_CFLAGS = \
 
31
        -I$(top_srcdir)/src\
 
32
        $(PACKAGE_CFLAGS)\
 
33
        -DMY_APPLET_SHARE_DATA_DIR=\""$(pkgdatadir)"\"\
 
34
        -DMY_APPLET_README_FILE=\""readme"\"\
 
35
        -DMY_APPLET_PREVIEW_FILE=\""preview.png"\"\
 
36
        -DMY_APPLET_CONF_FILE=\""mail.conf"\"\
 
37
        -DMY_APPLET_USER_DATA_DIR=\""mail"\"\
 
38
        -DMY_APPLET_VERSION=\""$(VERSION)"\"\
 
39
        -DMY_APPLET_GETTEXT_DOMAIN=\""$(GETTEXT_PACKAGE)"\"\
 
40
        -DMY_APPLET_DOCK_VERSION=\""$(dock_version)"\"\
 
41
        -DMY_APPLET_ICON_FILE=\""cd_mail_icon.png"\"\
 
42
        -std=c99\
 
43
        -Werror-implicit-function-declaration\
 
44
        -O3
 
45
#       -g -ggdb -W -Wall
 
46
 
 
47
 
 
48
libcd_mail_la_LIBADD = \
 
49
        $(PACKAGE_LIBS) -lm
 
50
 
 
51
 
 
52
libcd_mail_la_LDFLAGS =\
 
53
        -version-info 1:0:0
 
54
 
 
55
 
 
56
plugindir = `pkg-config cairo-dock --variable=pluginsdir`
 
57
 
 
58
plugin_DATA = \
 
59
        .libs/libcd-mail.so
 
60