X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=shell%2FMakefile.am;h=d51abd14d2a88d5749b5d114db244f7300df7b18;hb=8e30e595ac2d7f976bfab060dbc03595358431fb;hp=876da854cdf218dc718017b9c1afd4256f87d601;hpb=8aabbe7d5ef979d538996a7dd8a245f77b15ed51;p=evince.git diff --git a/shell/Makefile.am b/shell/Makefile.am index 876da854..d51abd14 100644 --- a/shell/Makefile.am +++ b/shell/Makefile.am @@ -3,7 +3,11 @@ NULL= INCLUDES= \ -DDATADIR=\"$(pkgdatadir)\" \ -I$(top_srcdir)/lib \ + -I$(top_srcdir)/backend \ + -I$(top_srcdir)/pdf/xpdf \ + -I$(top_srcdir)/ps \ -DGNOMELOCALEDIR=\"$(datadir)/locale\" \ + -DGNOMEICONDIR=\""$(datadir)/pixmaps"\" \ $(SHELL_CFLAGS) \ $(EVINCE_DISABLE_DEPRECATED) \ $(NULL) @@ -11,15 +15,42 @@ 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-view.c \ + ev-view.h \ ev-window.c \ ev-window.h \ ev-sidebar.c \ ev-sidebar.h \ + ev-sidebar-bookmarks.c \ + ev-sidebar-bookmarks.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)/backend/libevbackend.la \ + $(top_builddir)/pdf/xpdf/libpdfdocument.la \ + $(top_builddir)/ps/libgtkgs.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