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