]> www.fi.muni.cz Git - evince.git/blob - shell/Makefile.am
Automaticly reload the document when the file has changed on disk. Bug
[evince.git] / shell / Makefile.am
1 INCLUDES=                                               \
2         -DDATADIR=\"$(pkgdatadir)\"                     \
3         -DGNOMEDATADIR=\"$(datadir)\"                   \
4         -I$(top_srcdir)/cut-n-paste/zoom-control/       \
5         -I$(top_srcdir)/cut-n-paste/toolbar-editor/     \
6         -I$(top_srcdir)/cut-n-paste/totem-screensaver/  \
7         -I$(top_srcdir)/cut-n-paste/gedit-message-area/ \
8         -I$(top_srcdir)/cut-n-paste/evmountoperation/   \
9         -I$(top_srcdir)/libdocument                     \
10         -I$(top_srcdir)/properties                      \
11         -DGNOMELOCALEDIR=\"$(datadir)/locale\"          \
12         -DGNOMEICONDIR=\""$(datadir)/pixmaps"\"         \
13         $(SHELL_CFLAGS)                                 \
14         $(WARN_CFLAGS)                                  \
15         $(DISABLE_DEPRECATED)
16
17 bin_PROGRAMS=evince
18
19 evince_SOURCES=                         \
20         eggfindbar.c                    \
21         eggfindbar.h                    \
22         ev-application.c                \
23         ev-application.h                \
24         ev-job-queue.h                  \
25         ev-job-queue.c                  \
26         ev-jobs.h                       \
27         ev-jobs.c                       \
28         ev-file-monitor.h               \
29         ev-file-monitor.c               \
30         ev-history.c                    \
31         ev-history.h                    \
32         ev-marshal.c                    \
33         ev-marshal.h                    \
34         ev-message-area.c               \
35         ev-message-area.h               \
36         ev-metadata-manager.c           \
37         ev-metadata-manager.h           \
38         ev-navigation-action.c          \
39         ev-navigation-action.h          \
40         ev-navigation-action-widget.c   \
41         ev-navigation-action-widget.h   \
42         ev-page-action.c                \
43         ev-page-action.h                \
44         ev-page-action-widget.c         \
45         ev-page-action-widget.h         \
46         ev-page-cache.h                 \
47         ev-page-cache.c                 \
48         ev-password.h                   \
49         ev-password.c                   \
50         ev-password-view.h              \
51         ev-password-view.c              \
52         ev-pixbuf-cache.c               \
53         ev-pixbuf-cache.h               \
54         ev-properties-dialog.c          \
55         ev-properties-dialog.h          \
56         ev-properties-fonts.c           \
57         ev-properties-fonts.h           \
58         ev-open-recent-action.c         \
59         ev-open-recent-action.h         \
60         ev-utils.c                      \
61         ev-utils.h                      \
62         ev-view-accessible.c            \
63         ev-view-accessible.h            \
64         ev-view-private.h               \
65         ev-view.c                       \
66         ev-view.h                       \
67         ev-window.c                     \
68         ev-window.h                     \
69         ev-window-title.c               \
70         ev-window-title.h               \
71         ev-sidebar.c                    \
72         ev-sidebar.h                    \
73         ev-sidebar-attachments.c        \
74         ev-sidebar-attachments.h        \
75         ev-sidebar-links.c              \
76         ev-sidebar-links.h              \
77         ev-sidebar-page.c               \
78         ev-sidebar-page.h               \
79         ev-sidebar-thumbnails.c         \
80         ev-sidebar-thumbnails.h         \
81         ev-stock-icons.c                \
82         ev-stock-icons.h                \
83         ev-timeline.c                   \
84         ev-timeline.h                   \
85         ev-tooltip.c                    \
86         ev-tooltip.h                    \
87         ev-transition-animation.c       \
88         ev-transition-animation.h       \
89         main.c
90
91 evince_LDADD=                                                                   \
92         $(top_builddir)/cut-n-paste/zoom-control/libephyzoom.la                 \
93         $(top_builddir)/cut-n-paste/toolbar-editor/libtoolbareditor.la          \
94         $(top_builddir)/cut-n-paste/totem-screensaver/libtotemscrsaver.la       \
95         $(top_builddir)/cut-n-paste/gedit-message-area/libgeditmsgarea.la       \
96         $(top_builddir)/cut-n-paste/evmountoperation/libevmountoperation.la     \
97         $(top_builddir)/properties/libevproperties.la                           \
98         $(top_builddir)/libdocument/libevbackend.la                             \
99         $(SHELL_LIBS)
100
101 BUILT_SOURCES = ev-marshal.h ev-marshal.c
102
103 if ENABLE_DBUS
104 BUILT_SOURCES += ev-application-service.h
105 endif
106
107 EXTRA_DIST = ev-marshal.list            \
108         ev-application-service.xml
109
110
111 ev-marshal.h: $(srcdir)/ev-marshal.list
112         $(GLIB_GENMARSHAL) --prefix=ev_marshal $(srcdir)/ev-marshal.list --header > ev-marshal.h
113
114 ev-marshal.c: $(srcdir)/ev-marshal.list
115         echo '#include "ev-marshal.h"' > ev-marshal.c
116         $(GLIB_GENMARSHAL) --prefix=ev_marshal $(srcdir)/ev-marshal.list --body >> ev-marshal.c
117
118 DISTCLEANFILES= \
119         ev-application-service.h
120
121 if DBUS_TOOL_NO_PREFIX
122 ev-application-service.h: $(srcdir)/ev-application-service.xml
123         dbus-binding-tool --mode=glib-server --output=ev-application-service.h $(srcdir)/ev-application-service.xml
124 else
125 ev-application-service.h: $(srcdir)/ev-application-service.xml
126         dbus-binding-tool --prefix=ev_application --mode=glib-server --output=ev-application-service.h $(srcdir)/ev-application-service.xml
127 endif