]> www.fi.muni.cz Git - evince.git/blob - shell/Makefile.am
merge evince-threads branch
[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-pixbuf-cache.c               \
33         ev-pixbuf-cache.h               \
34         ev-print-job.c                  \
35         ev-print-job.h                  \
36         ev-utils.c                      \
37         ev-utils.h                      \
38         ev-view.c                       \
39         ev-view.h                       \
40         ev-window.c                     \
41         ev-window.h                     \
42         ev-sidebar.c                    \
43         ev-sidebar.h                    \
44         ev-sidebar-links.c              \
45         ev-sidebar-links.h              \
46         ev-sidebar-thumbnails.c         \
47         ev-sidebar-thumbnails.h         \
48         ev-stock-icons.c                \
49         ev-stock-icons.h                \
50         main.c                          \
51         $(NULL)
52
53 evince_LDADD=                                           \
54         $(SHELL_LIBS)                                   \
55         $(top_builddir)/lib/libev.la                    \
56         $(top_builddir)/pdf/libpdfdocument.la           \
57         $(top_builddir)/pixbuf/libpixbufdocument.la     \
58         $(top_builddir)/ps/libgtkgs.la                  \
59         $(top_builddir)/backend/libevbackend.la         \
60         $(NULL)
61
62 BUILT_SOURCES = ev-marshal.h ev-marshal.c
63
64 EXTRA_DIST = ev-marshal.list
65
66 ev-marshal.h: ev-marshal.list
67         glib-genmarshal --prefix=ev_marshal ev-marshal.list --header > ev-marshal.h
68
69 ev-marshal.c: ev-marshal.list
70         echo '#include "ev-marshal.h"' > ev-marshal.c
71         glib-genmarshal --prefix=ev_marshal ev-marshal.list --body >> ev-marshal.c