* Added hildon2 directory, with a copy of the contents of maemo
[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-easysetup-country-combo-box.h modest-easysetup-country-combo-box.c \
56         modest-easysetup-provider-combo-box.h modest-easysetup-provider-combo-box.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
83 if MODEST_USE_DUMMY_ADDRESS_BOOK
84 #        nothing 
85 else
86 libmodest_ui_la_SOURCES += modest-address-book.c
87 endif 
88
89
90 libmodest_ui_la_LIBADD = \
91         $(MODEST_GSTUFF_LIBS) \
92         $(MODEST_ABOOK_LIBS) \
93         $(MODEST_PLATFORM_LIBS) \
94         $(MODEST_TOOLKIT_LIBS) \
95         $(MODEST_WPEDITOR_LIBS) \
96         $(MODEST_HILDON_MIME_LIBS) \
97         $(MODEST_LIBCONIC_LIBS) \
98         $(MODEST_HILDON_HELP_LIBS) \
99         $(MODEST_LIBALARM_LIBS)   \
100         $(MODEST_HILDON_NOTIFY_LIBS)
101
102 PIXMAP_FILES=\
103         pixmaps/*.png 
104
105 pixmapdir = $(datadir)/pixmaps/modest
106 pixmap_DATA = $(PIXMAP_FILES)
107
108
109
110 UI_FILES=\
111         ui/modest-main-window-ui.xml \
112         ui/modest-msg-edit-window-ui.xml \
113         ui/modest-msg-view-window-ui.xml
114
115 uidir = $(datadir)/modest/ui
116 ui_DATA = $(UI_FILES)
117
118 serviceentry_DATA   = com.nokia.modest.service
119 desktopentry_DATA   = modest.desktop
120 backupsettings_DATA = modest.conf
121
122 icon_26x26_DATA     = pixmaps/modest-icon.png
123
124 # mcc_mapping may be provided by the operator-wizard-settings package:
125 # the one here is a copy, as that package is not available in chinook
126 MMC_MAPPING_FILE=mcc_mapping
127 mmccmappingdir=$(datadir)/modest/provider-data
128 mmccmapping_DATA = $(MMC_MAPPING_FILE)
129
130 PROVIDER_DATA_FILE=maemo-provider-data.keyfile
131 providerdatadir=$(datadir)/modest/provider-data
132 providerdata_DATA = $(PROVIDER_DATA_FILE)
133
134 EXTRA_DIST=\
135         $(UI_FILES) \
136         $(PIXMAP_FILES) \
137         $(serviceentry_DATA) \
138         $(desktopentry_DATA) \
139         $(backupsettings_DATA) \
140         $(icon_26x26_DATA)     \
141         $(MMC_MAPPING_FILE)    \
142         $(PROVIDER_DATA_FILE)