* Updated the SOURCES sections of Makefile.am's
[modest] / src / gtk / Makefile.am
1 #
2 # Makefile.am
3 # Time-stamp: <2007-01-09 17:04:51 (djcb)>
4 #
5 #
6 # use Automake 'trick' ==> convenience static libraries, which
7 # won't be installed, just for linking
8 #
9 INCLUDES=\
10         $(MODEST_GSTUFF_CFLAGS) \
11         $(MODEST_LIBTINYMAIL_GNOME_DESKTOP_CFLAGS) \
12         -DMODEST_PLATFORM_ID=$(MODEST_PLATFORM_ID) \
13         -I ${top_srcdir}/src/widgets  \
14         -I ${top_srcdir}/src  \
15         -DPREFIX=\"@prefix@\" \
16         -DPIXMAP_PREFIX=\"${datadir}/pixmaps/modest/\" \
17         -DMODEST_UIDIR=\""$(datadir)/modest/ui/"\" \
18         -Wall
19
20 noinst_LTLIBRARIES=\
21         libmodest-ui.la
22
23 PIXMAP_FILES=\
24         pixmaps/*.png \
25         pixmaps/*.svg
26
27 libmodest_ui_la_SOURCES=              \
28         modest-account-assistant.c    \
29         modest-account-assistant.h    \
30         modest-account-view-window.c  \
31         modest-account-view-window.h  \
32         modest-edit-msg-window.c      \
33         modest-icon-names.h           \
34         modest-main-window.c          \
35         modest-store-widget.c         \
36         modest-store-widget.h         \
37         modest-transport-widget.c     \
38         modest-transport-widget.h     
39
40 LDADD = \
41         $(MODEST_GSTUFF_LIBS) \
42         $(MODEST_LIBTINYMAIL_GNOME_DESKTOP_LIBS)
43
44 pixmapdir = $(datadir)/pixmaps/modest
45 pixmap_DATA = $(PIXMAP_FILES)
46
47 UI_FILES=\
48         ui/modest-ui.xml \
49         ui/modest-edit-msg-window-ui.xml
50
51 uidir = $(datadir)/modest/ui
52 ui_DATA = $(UI_FILES)
53
54 EXTRA_DIST=\
55         $(UI_FILES) \
56         $(PIXMAP_FILES)
57