X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=backend%2FMakefile.am;h=30318d88e5b569bbf1be69cc8c21719094b48ef7;hb=848665b157185945d190a7a746d054d7f5d5e6e0;hp=90303332880c1531f38fae1574ebff184ca39b40;hpb=53d25856dc1f8997ce4d142486e2c720fe0e2100;p=evince.git diff --git a/backend/Makefile.am b/backend/Makefile.am index 90303332..30318d88 100644 --- a/backend/Makefile.am +++ b/backend/Makefile.am @@ -1,33 +1,67 @@ -NULL= - INCLUDES= \ -DEVINCE_UIDIR=\"$(pkgdatadir)\" \ -DGNOMELOCALEDIR=\"$(datadir)/locale\" \ - $(SHELL_CFLAGS) \ - $(EVINCE_DISABLE_DEPRECATED) \ - $(NULL) + -I$(top_srcdir)/pdf \ + -I$(top_srcdir)/pixbuf \ + -I$(top_srcdir)/tiff \ + -I$(top_srcdir)/ps \ + -I$(top_srcdir)/djvu \ + -I$(top_srcdir)/dvi \ + $(BACKEND_CFLAGS) \ + $(WARN_CFLAGS) \ + $(DISABLE_DEPRECATED) noinst_LTLIBRARIES = libevbackend.la libevbackend_la_SOURCES= \ + ev-async-renderer.c \ + ev-async-renderer.h \ ev-backend-marshal.c \ ev-link.c \ ev-link.h \ ev-document.c \ ev-document.h \ + ev-document-factory.c \ + ev-document-factory.h \ ev-document-thumbnails.c \ ev-document-thumbnails.h \ + ev-document-fonts.c \ + ev-document-fonts.h \ ev-document-links.c \ ev-document-links.h \ ev-document-security.c \ ev-document-security.h \ ev-document-find.c \ ev-document-find.h \ + ev-document-info.h \ ev-ps-exporter.c \ ev-ps-exporter.h \ + ev-render-context.h \ + ev-render-context.c \ + ev-selection.h \ + ev-selection.c \ ev-document-misc.h \ - ev-document-misc.c \ - $(NULL) + ev-document-misc.c + +libevbackend_la_LIBADD = \ + $(top_builddir)/pdf/libpdfdocument.la \ + $(top_builddir)/pixbuf/libpixbufdocument.la \ + $(top_builddir)/ps/libpsdocument.la + +if ENABLE_DJVU +libevbackend_la_LIBADD += \ + $(top_builddir)/djvu/libgtkdjvu.la +endif + +if ENABLE_TIFF +libevbackend_la_LIBADD += \ + $(top_builddir)/tiff/libtiffdocument.la +endif + +if ENABLE_DVI +libevbackend_la_LIBADD += \ + $(top_builddir)/dvi/libgtkdvi.la +endif BUILT_SOURCES= \ ev-backend-marshalers.h \