X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=shell%2FMakefile.am;h=40748c9848fe0d28bf9f581aa442ef609b707efe;hb=bab5a16571364233e1ea383119fe0e35bbdf993e;hp=7179a7da3f413b0b1394c43f4efba70ccb53752a;hpb=1790c3aee3156081e86e6de56d5a86dbdd516b67;p=evince.git diff --git a/shell/Makefile.am b/shell/Makefile.am index 7179a7da..40748c98 100644 --- a/shell/Makefile.am +++ b/shell/Makefile.am @@ -3,7 +3,12 @@ NULL= INCLUDES= \ -DDATADIR=\"$(pkgdatadir)\" \ -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) @@ -11,17 +16,54 @@ INCLUDES= \ bin_PROGRAMS=evince evince_SOURCES= \ + dummy.cc \ eggfindbar.c \ eggfindbar.h \ ev-application.c \ ev-application.h \ + ev-marshal.c \ + ev-marshal.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) \ +evince_LDADD= \ + $(SHELL_LIBS) \ + $(top_builddir)/lib/libev.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