]> www.fi.muni.cz Git - evince.git/blob - shell/Makefile.am
Rename bookmark to link, and use "Index" for the sidebar panel.
[evince.git] / shell / Makefile.am
1 NULL=
2
3 INCLUDES=                                       \
4         -DDATADIR=\"$(pkgdatadir)\"             \
5         -I$(top_srcdir)/lib                     \
6         -I$(top_srcdir)/backend                 \
7         -I$(top_srcdir)/pdf/xpdf                \
8         -I$(top_srcdir)/pixbuf                  \
9         -I$(top_srcdir)/ps                      \
10         -DGNOMELOCALEDIR=\"$(datadir)/locale\"  \
11         -DGNOMEICONDIR=\""$(datadir)/pixmaps"\" \
12         $(SHELL_CFLAGS)                         \
13         $(EVINCE_DISABLE_DEPRECATED)            \
14         $(NULL)
15
16 bin_PROGRAMS=evince
17
18 evince_SOURCES=                         \
19         dummy.cc                        \
20         eggfindbar.c                    \
21         eggfindbar.h                    \
22         ev-application.c                \
23         ev-application.h                \
24         ev-history.c                    \
25         ev-history.h                    \
26         ev-marshal.c                    \
27         ev-marshal.h                    \
28         ev-navigation-action.c          \
29         ev-navigation-action.h          \
30         ev-page-action.c                \
31         ev-page-action.h                \
32         ev-print-job.c                  \
33         ev-print-job.h                  \
34         ev-utils.c                      \
35         ev-utils.h                      \
36         ev-view.c                       \
37         ev-view.h                       \
38         ev-window.c                     \
39         ev-window.h                     \
40         ev-sidebar.c                    \
41         ev-sidebar.h                    \
42         ev-sidebar-links.c              \
43         ev-sidebar-links.h              \
44         ev-sidebar-thumbnails.c         \
45         ev-sidebar-thumbnails.h         \
46         ev-stock-icons.c                \
47         ev-stock-icons.h                \
48         main.c                          \
49         $(NULL)
50
51 evince_LDADD=                                           \
52         $(SHELL_LIBS)                                   \
53         $(top_builddir)/pdf/xpdf/libpdfdocument.la      \
54         $(top_builddir)/pixbuf/libpixbufdocument.la     \
55         $(top_builddir)/ps/libgtkgs.la                  \
56         $(top_builddir)/backend/libevbackend.la         \
57         $(NULL)
58
59 BUILT_SOURCES = ev-marshal.h ev-marshal.c
60
61 EXTRA_DIST = ev-marshal.list
62
63 ev-marshal.h: ev-marshal.list
64         glib-genmarshal --prefix=ev_marshal ev-marshal.list --header > ev-marshal.h
65
66 ev-marshal.c: ev-marshal.list
67         echo '#include "ev-marshal.h"' > ev-marshal.c
68         glib-genmarshal --prefix=ev_marshal ev-marshal.list --body >> ev-marshal.c