* Created ModestProviderPicker widget for hildon2 toolkit.
[modest] / src / hildon2 / Makefile.am
1 # Copyright (c) 2006,2007 Nokia Corporation
2 # All rights reserved.
3
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
7
8 # * Redistributions of source code must retain the above copyright
9 #   notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above copyright
11 #   notice, this list of conditions and the following disclaimer in the
12 #   documentation and/or other materials provided with the distribution.
13 # * Neither the name of the Nokia Corporation nor the names of its
14 #   contributors may be used to endorse or promote products derived from
15 #   this software without specific prior written permission.
16
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18 # IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20 # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21 # OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25 # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29 INCLUDES=\
30         $(MODEST_GSTUFF_CFLAGS)             \
31         $(MODEST_WPEDITOR_CFLAGS)           \
32         $(MODEST_PLATFORM_CFLAGS)           \
33         $(MODEST_TOOLKIT_CFLAGS)           \
34         $(MODEST_ABOOK_CFLAGS)              \
35         $(MODEST_HILDON_HELP_CFLAGS)        \
36         $(MODEST_LIBCONIC_CFLAGS)           \
37         $(MODEST_HILDON_MIME_CFLAGS)        \
38         $(MODEST_HILDON_NOTIFY_CFLAGS)      \
39         $(MODEST_LIBALARM_CFLAGS)           \
40         -I ${top_srcdir}/src/widgets        \
41         -I ${top_srcdir}/src                \
42         -DPREFIX=\"@prefix@\"               \
43         -DMAEMO_CHANGES                     \
44         -DPIXMAP_PREFIX=\"${datadir}/pixmaps/modest/\" \
45         -DMODEST_UIDIR=\""$(datadir)/modest/ui/"\" \
46         -Wall
47
48 noinst_LTLIBRARIES=\
49         libmodest-ui.la
50
51 libmodest_ui_la_SOURCES=              \
52         modest-account-view-window.c  \
53         modest-default-account-settings-dialog.c \
54         modest-easysetup-wizard-dialog.h modest-easysetup-wizard-dialog.c \
55         modest-country-picker.h modest-country-picker.c \
56         modest-provider-picker.h modest-provider-picker.c \
57         modest-easysetup-servertype-combo-box.h modest-easysetup-servertype-combo-box.c \
58         modest-icon-names.h           \
59         modest-maemo-global-settings-dialog.c \
60         modest-maemo-global-settings-dialog.h \
61         modest-maemo-security-options-view.c \
62         modest-main-window.c          \
63         modest-main-window-ui.h       \
64         modest-hildon-includes.h      \
65         modest-hildon-sort-dialog.c   \
66         modest-hildon-sort-dialog.h   \
67         modest-platform.c             \
68         modest-signature-editor-dialog.c         \
69         modest-signature-editor-dialog.h         \
70         modest-msg-view-window.c      \
71         modest-msg-edit-window.c      \
72         modest-maemo-utils.c          \
73         modest-connection-specific-smtp-window.h \
74         modest-connection-specific-smtp-window.c \
75         modest-connection-specific-smtp-edit-window.h \
76         modest-connection-specific-smtp-edit-window.c \
77         modest-osso-autosave-callbacks.c \
78         modest-osso-autosave-callbacks.h \
79         modest-osso-state-saving.c \
80         modest-osso-state-saving.h   \
81         modest-presets.h modest-presets.c \
82         modest-selector-picker.h modest-selector-picker.c
83
84 if MODEST_USE_DUMMY_ADDRESS_BOOK
85 #        nothing 
86 else
87 libmodest_ui_la_SOURCES += modest-address-book.c
88 endif 
89
90
91 libmodest_ui_la_LIBADD = \
92         $(MODEST_GSTUFF_LIBS) \
93         $(MODEST_ABOOK_LIBS) \
94         $(MODEST_PLATFORM_LIBS) \
95         $(MODEST_TOOLKIT_LIBS) \
96         $(MODEST_WPEDITOR_LIBS) \
97         $(MODEST_HILDON_MIME_LIBS) \
98         $(MODEST_LIBCONIC_LIBS) \
99         $(MODEST_HILDON_HELP_LIBS) \
100         $(MODEST_LIBALARM_LIBS)   \
101         $(MODEST_HILDON_NOTIFY_LIBS)
102
103 PIXMAP_FILES=\
104         pixmaps/*.png 
105
106 pixmapdir = $(datadir)/pixmaps/modest
107 pixmap_DATA = $(PIXMAP_FILES)
108
109
110
111 UI_FILES=\
112         ui/modest-main-window-ui.xml \
113         ui/modest-msg-edit-window-ui.xml \
114         ui/modest-msg-view-window-ui.xml
115
116 uidir = $(datadir)/modest/ui
117 ui_DATA = $(UI_FILES)
118
119 serviceentry_DATA   = com.nokia.modest.service
120 desktopentry_DATA   = modest.desktop
121 backupsettings_DATA = modest.conf
122
123 icon_26x26_DATA     = pixmaps/modest-icon.png
124
125 # mcc_mapping may be provided by the operator-wizard-settings package:
126 # the one here is a copy, as that package is not available in chinook
127 MMC_MAPPING_FILE=mcc_mapping
128 mmccmappingdir=$(datadir)/modest/provider-data
129 mmccmapping_DATA = $(MMC_MAPPING_FILE)
130
131 PROVIDER_DATA_FILE=maemo-provider-data.keyfile
132 providerdatadir=$(datadir)/modest/provider-data
133 providerdata_DATA = $(PROVIDER_DATA_FILE)
134
135 EXTRA_DIST=\
136         $(UI_FILES) \
137         $(PIXMAP_FILES) \
138         $(serviceentry_DATA) \
139         $(desktopentry_DATA) \
140         $(backupsettings_DATA) \
141         $(icon_26x26_DATA)     \
142         $(MMC_MAPPING_FILE)    \
143         $(PROVIDER_DATA_FILE)