X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=sidebyside;f=shell%2FMakefile.am;h=8762d931b5e2a54c8d19958624c2155e17e40b07;hb=5bde54f8810020217366ec3e9a64b44b4f6ee3c6;hp=891eadb7a8a8625b8783da0049ec1db6e2de6f63;hpb=a4cf673a3347ec011ebc90b22b6541bae0b9f6b4;p=evince.git diff --git a/shell/Makefile.am b/shell/Makefile.am index 891eadb7..8762d931 100644 --- a/shell/Makefile.am +++ b/shell/Makefile.am @@ -5,7 +5,10 @@ INCLUDES= \ -I$(top_srcdir)/lib \ -I$(top_srcdir)/backend \ -I$(top_srcdir)/pdf/xpdf \ + -I$(top_srcdir)/pixbuf \ + -I$(top_srcdir)/ps \ -DGNOMELOCALEDIR=\"$(datadir)/locale\" \ + -DGNOMEICONDIR=\""$(datadir)/pixmaps"\" \ $(SHELL_CFLAGS) \ $(EVINCE_DISABLE_DEPRECATED) \ $(NULL) @@ -13,19 +16,57 @@ INCLUDES= \ bin_PROGRAMS=evince evince_SOURCES= \ + dummy.cc \ eggfindbar.c \ eggfindbar.h \ ev-application.c \ ev-application.h \ + ev-history.c \ + ev-history.h \ + ev-marshal.c \ + ev-marshal.h \ + ev-navigation-action.c \ + ev-navigation-action.h \ + ev-page-action.c \ + ev-page-action.h \ + ev-password.h \ + ev-password.c \ + ev-password-view.h \ + ev-password-view.c \ + ev-print-job.c \ + ev-print-job.h \ + ev-utils.c \ + ev-utils.h \ + ev-view.c \ + ev-view.h \ ev-window.c \ ev-window.h \ ev-sidebar.c \ ev-sidebar.h \ + ev-sidebar-links.c \ + ev-sidebar-links.h \ + ev-sidebar-thumbnails.c \ + ev-sidebar-thumbnails.h \ + ev-stock-icons.c \ + ev-stock-icons.h \ main.c \ $(NULL) evince_LDADD= \ $(SHELL_LIBS) \ - $(top_builddir)/backend/libevbackend.la \ $(top_builddir)/pdf/xpdf/libpdfdocument.la \ + $(top_builddir)/pixbuf/libpixbufdocument.la \ + $(top_builddir)/ps/libgtkgs.la \ + $(top_builddir)/backend/libevbackend.la \ $(NULL) + +BUILT_SOURCES = ev-marshal.h ev-marshal.c + +EXTRA_DIST = ev-marshal.list + +ev-marshal.h: ev-marshal.list + glib-genmarshal --prefix=ev_marshal ev-marshal.list --header > ev-marshal.h + +ev-marshal.c: ev-marshal.list + echo '#include "ev-marshal.h"' > ev-marshal.c + glib-genmarshal --prefix=ev_marshal ev-marshal.list --body >> ev-marshal.c