]> www.fi.muni.cz Git - evince.git/blob - shell/Makefile.am
Use poppler instead of including xpdf source code. Poppler is a fork of
[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                     \
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-marshal.c                    \
25         ev-marshal.h                    \
26         ev-page-action.c                \
27         ev-page-action.h                \
28         ev-password.h                   \
29         ev-password.c                   \
30         ev-password-view.h              \
31         ev-password-view.c              \
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)/lib/libev.la                    \
54         $(top_builddir)/pdf/libpdfdocument.la           \
55         $(top_builddir)/pixbuf/libpixbufdocument.la     \
56         $(top_builddir)/ps/libgtkgs.la                  \
57         $(top_builddir)/backend/libevbackend.la         \
58         $(NULL)
59
60 BUILT_SOURCES = ev-marshal.h ev-marshal.c
61
62 EXTRA_DIST = ev-marshal.list
63
64 ev-marshal.h: ev-marshal.list
65         glib-genmarshal --prefix=ev_marshal ev-marshal.list --header > ev-marshal.h
66
67 ev-marshal.c: ev-marshal.list
68         echo '#include "ev-marshal.h"' > ev-marshal.c
69         glib-genmarshal --prefix=ev_marshal ev-marshal.list --body >> ev-marshal.c